Retro68/gcc/newlib/libc/posix/execve.c

21 lines
325 B
C
Raw Normal View History

2017-04-11 21:13:36 +00:00
#ifndef _NO_EXECVE
/* execve.c */
/* This and the other exec*.c files in this directory require
the target to provide the _execve syscall. */
#include <unistd.h>
int
2018-12-28 15:30:48 +00:00
execve (const char *path,
char * const argv[],
2017-04-11 21:13:36 +00:00
char * const envp[])
{
return _execve (path, argv, envp);
}
#endif /* !_NO_EXECVE */