diff options
author | 2015-09-12 14:56:50 +0000 | |
---|---|---|
committer | 2015-09-12 14:56:50 +0000 | |
commit | 0e3c6306f9e8c62197134dcb9c6f7fdda47b72b8 (patch) | |
tree | 156ca6d3bca87e18d5b8368eb09c65267e4c649a /lib/libc/gen/exec.c | |
parent | Wrap <getopt.h> to make the functions weak and make access to the initialized (diff) | |
download | wireguard-openbsd-0e3c6306f9e8c62197134dcb9c6f7fdda47b72b8.tar.xz wireguard-openbsd-0e3c6306f9e8c62197134dcb9c6f7fdda47b72b8.zip |
Wrap <unistd.h> so that internal calls go direct and they're all weak symbols
Delete unused 'fd' argument from internal function oldttyname()
Diffstat (limited to 'lib/libc/gen/exec.c')
-rw-r--r-- | lib/libc/gen/exec.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libc/gen/exec.c b/lib/libc/gen/exec.c index 1e2f7d97dd2..73297ae9a79 100644 --- a/lib/libc/gen/exec.c +++ b/lib/libc/gen/exec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exec.c,v 1.21 2013/09/30 12:02:33 millert Exp $ */ +/* $OpenBSD: exec.c,v 1.22 2015/09/12 14:56:50 guenther Exp $ */ /*- * Copyright (c) 1991, 1993 * The Regents of the University of California. All rights reserved. @@ -67,6 +67,7 @@ execl(const char *name, const char *arg, ...) va_end(ap); return (execve(name, argv, environ)); } +DEF_WEAK(execl); int execle(const char *name, const char *arg, ...) @@ -242,10 +243,12 @@ retry: (void)execve(bp, argv, envp); done: return (-1); } +DEF_WEAK(execvpe); int execvp(const char *name, char *const *argv) { return execvpe(name, argv, environ); } +DEF_WEAK(execvp); |