2018-09-24 21:46:21 +00:00
|
|
|
// Copyright 2018 The Go Authors. All rights reserved.
|
2014-07-19 08:53:52 +00:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-07-30 14:28:58 -07:00
|
|
|
//go:build js && wasm
|
2018-09-24 21:46:21 +00:00
|
|
|
|
2014-07-19 08:53:52 +00:00
|
|
|
package os
|
|
|
|
|
|
|
|
// supportsCloseOnExec reports whether the platform supports the
|
|
|
|
// O_CLOEXEC flag.
|
2018-09-24 21:46:21 +00:00
|
|
|
const supportsCloseOnExec = false
|