Black Lives Matter. Support the Equal Justice Initiative.

Source file src/runtime/cgo/netbsd.go

Documentation: runtime/cgo

     1  // Copyright 2010 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 netbsd
     6  // +build netbsd
     7  
     8  package cgo
     9  
    10  import _ "unsafe" // for go:linkname
    11  
    12  // Supply environ and __progname, because we don't
    13  // link against the standard NetBSD crt0.o and the
    14  // libc dynamic library needs them.
    15  
    16  //go:linkname _environ environ
    17  //go:linkname _progname __progname
    18  //go:linkname ___ps_strings __ps_strings
    19  
    20  var _environ uintptr
    21  var _progname uintptr
    22  var ___ps_strings uintptr
    23  

View as plain text