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: 1a593117d32f2eafeecc3f253cac2d1cc618f655 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* connector for execve */

#include <reent.h>
#include <unistd.h>

int
_DEFUN (execve, (name, argv, env),
     const char *name,
     char *const argv[],
     char *const env[])
{
  return _execve_r (_REENT, name, argv, env);
}