[Glibc-bsd-commits] r4604 - trunk/glibc-ports/kfreebsd

Petr Salinger ps-guest at alioth.debian.org
Mon Jul 8 12:47:16 UTC 2013


Author: ps-guest
Date: 2013-06-25 07:18:14 +0000 (Tue, 25 Jun 2013)
New Revision: 4604

Added:
   trunk/glibc-ports/kfreebsd/execve.c
Log:
add general execve support (instead of ENOSYS from posix dir)


Added: trunk/glibc-ports/kfreebsd/execve.c
===================================================================
--- trunk/glibc-ports/kfreebsd/execve.c	                        (rev 0)
+++ trunk/glibc-ports/kfreebsd/execve.c	2013-06-25 07:18:14 UTC (rev 4604)
@@ -0,0 +1,5 @@
+int __syscall_execve(const char *filename, 
+                     char *const argv[], 
+                     char *const envp[]);
+libc_hidden_proto (__syscall_execve)
+#include <sysdeps/unix/sysv/linux/execve.c>




More information about the Glibc-bsd-commits mailing list