blob: cfe78c58d8de2c2bac2f173e98a6908aac051b95 [file] [log] [blame]
// Copyright 2018 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.
//go:build js && wasm
package unix
func IsNonblock(fd int) (nonblocking bool, err error) {
return false, nil
}
func HasNonblockFlag(flag int) bool {
return false
}