blob: 69d52b5b2f97a4945431acddd247a368c16a52f7 [file] [log] [blame]
Aulus Egnatius Varialus2b44b362013-09-04 15:19:21 -07001// 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
Russ Cox2cd05c32014-11-09 20:20:45 -05005// +build dragonfly
6
Russ Cox9f99d532014-11-11 17:05:37 -05007package cgo
8
Russ Coxe98f2d52014-11-12 14:54:04 -05009import _ "unsafe" // for go:linkname
Russ Cox75cca052014-09-24 17:50:44 -040010
Aulus Egnatius Varialus2b44b362013-09-04 15:19:21 -070011// Supply environ and __progname, because we don't
12// link against the standard DragonFly crt0.o and the
13// libc dynamic library needs them.
14
Russ Cox9f99d532014-11-11 17:05:37 -050015//go:linkname _environ environ
16//go:linkname _progname __progname
Aulus Egnatius Varialus2b44b362013-09-04 15:19:21 -070017
Russ Cox9f99d532014-11-11 17:05:37 -050018var _environ uintptr
19var _progname uintptr