4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-02-08 18:19:08 +08:00
2000-02-17 19:39:52 +00:00

11 lines
243 B
C

/* execve.c */
/* This and the other exec*.c files in this directory require
the target to provide the _execve syscall. */
int
execve (const char *path, char * const argv[], char * const envp[])
{
return _execve (path, argv, envp);
}