Source file src/runtime/linkname_unix.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 unix
     6  
     7  package runtime
     8  
     9  import _ "unsafe"
    10  
    11  // used in internal/syscall/unix
    12  //go:linkname fcntl
    13  

View as plain text