aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/syscalls/sysexecve.c
blob: 52dbaddc31704f9d09a823434751d64fe701d0c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* connector for execve */

#include <reent.h>
#include <unistd.h>

int
execve (const char *name,
     char *const argv[],
     char *const env[])
{
  return _execve_r (_REENT, name, argv, env);
}