From: Peter S. Mazinger Date: Sat, 16 Apr 2011 00:07:22 +0000 (+0200) Subject: prctl.c: no need to include stdarg.h and extern X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f95e1b4c613043715b2a04ee941156126a848f77;p=uclinux-h8%2Fuclibc-ng.git prctl.c: no need to include stdarg.h and extern Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- diff --git a/libc/sysdeps/linux/common/prctl.c b/libc/sysdeps/linux/common/prctl.c index 39c0d4fb0..67732bb90 100644 --- a/libc/sysdeps/linux/common/prctl.c +++ b/libc/sysdeps/linux/common/prctl.c @@ -8,10 +8,9 @@ */ #include -#include /* 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