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

execve.c « posix « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8083c03b092dfbc12b2d39b99e3ac5f5a4db594e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* execve.c */

/* This and the other exec*.c files in this directory require 
   the target to provide the _execve syscall.  */


#include <unistd.h>


int
_DEFUN(execve, (path, argv, envp),
      const char *path _AND
      char * const argv[] _AND
      char * const envp[])
{
  return _execve (path, argv, envp);
}