Black Lives Matter. Support the Equal Justice Initiative.

Source file src/runtime/cgo/dragonfly.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 dragonfly
     6  // +build dragonfly
     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 DragonFly crt0.o and the
    14  // libc dynamic library needs them.
    15  
    16  //go:linkname _environ environ
    17  //go:linkname _progname __progname
    18  
    19  var _environ uintptr
    20  var _progname uintptr
    21  

View as plain text