Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/klibc/execv.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: 128 byte(s)
-updated to klibc-1.5.22 with mntproc definitions patch included
1 /*
2 * execv.c
3 */
4
5 #include <unistd.h>
6
7 int execv(const char *path, char *const *argv)
8 {
9 return execve(path, argv, environ);
10 }