4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-30 19:10:36 +08:00
Yaakov Selkowitz 6783860a2e ansification: remove _AND
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
2018-01-17 11:47:05 -06:00

22 lines
358 B
C

#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
_DEFUN(execve, (path, argv, envp),
const char *path,
char * const argv[],
char * const envp[])
{
return _execve (path, argv, envp);
}
#endif /* !_NO_EXECVE */