Black Lives Matter. Support the Equal Justice Initiative.

Source file src/os/sticky_notbsd.go

Documentation: os

     1  // Copyright 2014 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  //go:build !aix && !darwin && !dragonfly && !freebsd && (!js || !wasm) && !netbsd && !openbsd && !solaris
     6  // +build !aix
     7  // +build !darwin
     8  // +build !dragonfly
     9  // +build !freebsd
    10  // +build !js !wasm
    11  // +build !netbsd
    12  // +build !openbsd
    13  // +build !solaris
    14  
    15  package os
    16  
    17  const supportsCreateWithStickyBit = true
    18  

View as plain text