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

#include <reent.h>

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