Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sysexecve.c « syscalls « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52dbaddc31704f9d09a823434751d64fe701d0c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* 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);
}