svn commit: trunk/uClibc/libc/sysdeps/linux/common

vapier at uclibc.org vapier at uclibc.org
Sat Feb 11 04:08:39 UTC 2006


Author: vapier
Date: 2006-02-10 20:08:38 -0800 (Fri, 10 Feb 2006)
New Revision: 13907

Log:
get rid of pass through func

Modified:
   trunk/uClibc/libc/sysdeps/linux/common/execve.c


Changeset:
Modified: trunk/uClibc/libc/sysdeps/linux/common/execve.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/common/execve.c	2006-02-11 04:08:23 UTC (rev 13906)
+++ trunk/uClibc/libc/sysdeps/linux/common/execve.c	2006-02-11 04:08:38 UTC (rev 13907)
@@ -13,13 +13,6 @@
 #include <sys/param.h>
 
 libc_hidden_proto(execve)
-
-#define __NR___syscall_execve __NR_execve
-static inline _syscall3(int, __syscall_execve, const char *, filename,
+_syscall3(int, execve, const char *, filename,
 		  char *const *, argv, char *const *, envp);
-
-int execve(const char * filename, char *const * argv, char *const * envp)
-{
-	return __syscall_execve(filename, argv, envp);
-}
 libc_hidden_def(execve)




More information about the uClibc-cvs mailing list