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