fixed more binutils issues (newer gcc/libc)
[zpugcc/jano.git] / toolchain / gcc / libgloss / libnosys / execve.c
blob01743fff9642a261bdf230b504bfb47e29b82e9b
1 /*
2 * Stub version of execve.
3 */
5 #include "config.h"
6 #include <_ansi.h>
7 #include <_syslist.h>
8 #include <errno.h>
9 #undef errno
10 extern int errno;
11 #include "warning.h"
13 int
14 _DEFUN (_execve, (name, argv, env),
15 char *name _AND
16 char **argv _AND
17 char **env)
19 errno = ENOSYS;
20 return -1;
23 stub_warning(_execve)