source: trunk/libs/newlib/src/newlib/libc/syscalls/sysexecve.c @ 543

Last change on this file since 543 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 197 bytes
Line 
1/* connector for execve */
2
3#include <reent.h>
4#include <unistd.h>
5
6int
7execve (const char *name,
8     char *const argv[],
9     char *const env[])
10{
11  return _execve_r (_REENT, name, argv, env);
12}
Note: See TracBrowser for help on using the repository browser.