diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-02-11 04:08:38 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-02-11 04:08:38 +0000 |
commit | 6bc17e607f7b0856ee320979a8c2303173734988 (patch) | |
tree | c42d0d00c57cec1f0af8d54a7f5d2510086084ff /libc/sysdeps/linux | |
parent | e8f50b1894e5566b79a3e6c0c998476b697a8584 (diff) |
get rid of pass through func
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/common/execve.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/libc/sysdeps/linux/common/execve.c b/libc/sysdeps/linux/common/execve.c index 4e97795b4..7183f481f 100644 --- a/libc/sysdeps/linux/common/execve.c +++ b/libc/sysdeps/linux/common/execve.c @@ -13,13 +13,6 @@ #include <sys/param.h> libc_hidden_proto(execve) - -#define __NR___syscall_execve __NR_execve -static inline _syscall3(int, __syscall_execve, const char *, filename, +_syscall3(int, execve, const char *, filename, char *const *, argv, char *const *, envp); - -int execve(const char * filename, char *const * argv, char *const * envp) -{ - return __syscall_execve(filename, argv, envp); -} libc_hidden_def(execve) |