summaryrefslogtreecommitdiff
path: root/src/syscall/syscall_openbsd_libc.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/syscall/syscall_openbsd_libc.go')
-rw-r--r--src/syscall/syscall_openbsd_libc.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/syscall/syscall_openbsd_libc.go b/src/syscall/syscall_openbsd_libc.go
index 15b68fd0fc..ff9fa00259 100644
--- a/src/syscall/syscall_openbsd_libc.go
+++ b/src/syscall/syscall_openbsd_libc.go
@@ -10,6 +10,11 @@ import (
"internal/abi"
)
+var (
+ exitTrampoline = abi.FuncPCABI0(libc_exit_trampoline)
+ forkTrampoline = abi.FuncPCABI0(libc_fork_trampoline)
+)
+
func init() {
execveOpenBSD = execve
}