blob: ef30d3540b50ae1d775133b7955d450779d4decd [file] [log] [blame]
// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build fuchsia
// +build !cgo
package mxc
import (
"syscall/zx"
"syscall/zx/fdio"
)
func transferFDIOFromCFD(fd int) (fdio.FDIO, error) {
return nil, zx.ErrNotSupported
}