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: 154c082f9f99988a9c508193a15c022d18017477 (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 _AND
     char *_CONST argv[] _AND
     char *_CONST env[])
{
  return _execve_r (_REENT, name, argv, env);
}