summaryrefslogtreecommitdiff
path: root/newlib/libc/posix/execve.c
blob: 416144e86655b55b1c7fbc6e68f67372090df1d9 (plain)
1
2
3
4
5
6
7
8
9
10
/* execve.c */

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

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