svn commit: branches/uClibc_0_9_29/libc/unistd

vapier at uclibc.org vapier at uclibc.org
Sat Jan 5 17:57:47 UTC 2008


Author: vapier
Date: 2008-01-05 09:57:46 -0800 (Sat, 05 Jan 2008)
New Revision: 20794

Log:
Merge r20663 by vapier from trunk:
add hidden defs for execv/execlp for completeness


Modified:
   branches/uClibc_0_9_29/libc/unistd/exec.c


Changeset:
Modified: branches/uClibc_0_9_29/libc/unistd/exec.c
===================================================================
--- branches/uClibc_0_9_29/libc/unistd/exec.c	2008-01-05 17:57:40 UTC (rev 20793)
+++ branches/uClibc_0_9_29/libc/unistd/exec.c	2008-01-05 17:57:46 UTC (rev 20794)
@@ -29,6 +29,8 @@
 
 libc_hidden_proto(execl)
 libc_hidden_proto(execle)
+libc_hidden_proto(execlp)
+libc_hidden_proto(execv)
 libc_hidden_proto(execvp)
 
 libc_hidden_proto(memcpy)
@@ -129,6 +131,7 @@
 {
 	return execve(path, argv, __environ);
 }
+libc_hidden_def(execv)
 
 #endif
 /**********************************************************************/
@@ -204,6 +207,7 @@
 
 	return n;
 }
+libc_hidden_def(execlp)
 
 #endif
 /**********************************************************************/




More information about the uClibc-cvs mailing list