Source file src/syscall/linkname_openbsd.go

     1  // Copyright 2024 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 openbsd && !mips64
     6  
     7  package syscall
     8  
     9  import _ "unsafe"
    10  
    11  // used by internal/syscall/unix
    12  //go:linkname unlinkat
    13  //go:linkname openat
    14  //go:linkname fstatat
    15  

View as plain text