Aulus Egnatius Varialus | 2b44b36 | 2013-09-04 15:19:21 -0700 | [diff] [blame] | 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 | |
Russ Cox | 2cd05c3 | 2014-11-09 20:20:45 -0500 | [diff] [blame] | 5 | // +build dragonfly |
| 6 | |
Russ Cox | 9f99d53 | 2014-11-11 17:05:37 -0500 | [diff] [blame] | 7 | package cgo |
| 8 | |
Russ Cox | e98f2d5 | 2014-11-12 14:54:04 -0500 | [diff] [blame] | 9 | import _ "unsafe" // for go:linkname |
Russ Cox | 75cca05 | 2014-09-24 17:50:44 -0400 | [diff] [blame] | 10 | |
Aulus Egnatius Varialus | 2b44b36 | 2013-09-04 15:19:21 -0700 | [diff] [blame] | 11 | // 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 Cox | 9f99d53 | 2014-11-11 17:05:37 -0500 | [diff] [blame] | 15 | //go:linkname _environ environ |
| 16 | //go:linkname _progname __progname |
Aulus Egnatius Varialus | 2b44b36 | 2013-09-04 15:19:21 -0700 | [diff] [blame] | 17 | |
Russ Cox | 9f99d53 | 2014-11-11 17:05:37 -0500 | [diff] [blame] | 18 | var _environ uintptr |
| 19 | var _progname uintptr |