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

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

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

#include <_ansi.h>
#include <unistd.h>

int
_DEFUN (execv, (path, argv), 
	const char *path _AND
	char * const argv[])
{
  return _execve (path, (char * _CONST *) argv, environ);
}