Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/klibc/execvp.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1297 - (show annotations) (download)
Fri May 27 15:12:11 2011 UTC (12 years, 11 months ago) by niro
File MIME type: text/plain
File size: 131 byte(s)
-updated to klibc-1.5.22 with mntproc definitions patch included
1 /*
2 * execvp.c
3 */
4
5 #include <unistd.h>
6
7 int execvp(const char *path, char *const *argv)
8 {
9 return execvpe(path, argv, environ);
10 }