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

vapier at uclibc.org vapier at uclibc.org
Thu Feb 9 05:40:57 UTC 2006


Author: vapier
Date: 2006-02-08 21:40:55 -0800 (Wed, 08 Feb 2006)
New Revision: 13886

Log:
fix prototype for 64bit hosts

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


Changeset:
Modified: trunk/uClibc/libc/sysdeps/linux/common/prctl.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/common/prctl.c	2006-02-09 05:12:35 UTC (rev 13885)
+++ trunk/uClibc/libc/sysdeps/linux/common/prctl.c	2006-02-09 05:40:55 UTC (rev 13886)
@@ -10,5 +10,5 @@
 #include "syscalls.h"
 #include <stdarg.h>
 /* psm: including sys/prctl.h would depend on kernel headers */
-extern int prctl (int, int, int, int, int);
-_syscall5(int, prctl, int, a, int, b, int, c, int, d, int, e);
+extern int prctl (int, long, long, long, long);
+_syscall5(int, prctl, int, option, long, arg2, long, arg3, long, arg4, long, arg5);




More information about the uClibc-cvs mailing list