mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 12:59:21 +08:00
9087163804
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
13 lines
197 B
C
13 lines
197 B
C
/* connector for execve */
|
|
|
|
#include <reent.h>
|
|
#include <unistd.h>
|
|
|
|
int
|
|
execve (const char *name,
|
|
char *const argv[],
|
|
char *const env[])
|
|
{
|
|
return _execve_r (_REENT, name, argv, env);
|
|
}
|