Source file src/syscall/linkname_libc.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 aix || darwin || (openbsd && !mips64) || solaris
     6  
     7  package syscall
     8  
     9  import _ "unsafe"
    10  
    11  // used by internal/poll
    12  //go:linkname writev
    13  

View as plain text