123456789101112131415161718192021222324 |
- /* vi: set sw=4 ts=4: */
- /*
- * execve() for uClibc
- *
- * Copyright (C) 2000-2004 by Erik Andersen <andersen@codepoet.org>
- *
- * GNU Library General Public License (LGPL) version 2 or later.
- */
- #include "syscalls.h"
- #include <unistd.h>
- #include <string.h>
- #include <sys/param.h>
- #define __NR___syscall_execve __NR_execve
- static inline _syscall3(int, __syscall_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_proto(execve)
- libc_hidden_def(execve)
|