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