source: trunk/libs/newlib/src/newlib/libc/posix/execve.c @ 577

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

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

File size: 325 bytes
Line 
1#ifndef _NO_EXECVE
2
3/* execve.c */
4
5/* This and the other exec*.c files in this directory require
6   the target to provide the _execve syscall.  */
7
8
9#include <unistd.h>
10
11
12int
13execve (const char *path,
14      char * const argv[],
15      char * const envp[])
16{
17  return _execve (path, argv, envp);
18}
19
20#endif /* !_NO_EXECVE  */
Note: See TracBrowser for help on using the repository browser.