[git commit] prctl.c: no need to include stdarg.h and extern

Bernhard Reutner-Fischer rep.dot.nop at gmail.com
Fri Jun 15 12:00:38 UTC 2012


commit: http://git.uclibc.org/uClibc/commit/?id=f95e1b4c613043715b2a04ee941156126a848f77
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

Signed-off-by: Peter S. Mazinger <ps.m at gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
 libc/sysdeps/linux/common/prctl.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/libc/sysdeps/linux/common/prctl.c b/libc/sysdeps/linux/common/prctl.c
index 39c0d4f..67732bb 100644
--- a/libc/sysdeps/linux/common/prctl.c
+++ b/libc/sysdeps/linux/common/prctl.c
@@ -8,10 +8,9 @@
  */
 
 #include <sys/syscall.h>
-#include <stdarg.h>
 /* psm: including sys/prctl.h would depend on kernel headers */
 
 #ifdef __NR_prctl
-extern int prctl (int, long, long, long, long);
+int prctl (int, long, long, long, long);
 _syscall5(int, prctl, int, option, long, _a2, long, _a3, long, _a4, long, _a5)
 #endif


More information about the uClibc-cvs mailing list