fixed more binutils issues (newer gcc/libc)
[zpugcc/jano.git] / toolchain / gcc / newlib / libc / posix / execve.c
blob8083c03b092dfbc12b2d39b99e3ac5f5a4db594e
1 /* execve.c */
3 /* This and the other exec*.c files in this directory require
4 the target to provide the _execve syscall. */
7 #include <unistd.h>
10 int
11 _DEFUN(execve, (path, argv, envp),
12 const char *path _AND
13 char * const argv[] _AND
14 char * const envp[])
16 return _execve (path, argv, envp);