From f95e1b4c613043715b2a04ee941156126a848f77 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Sat, 16 Apr 2011 02:07:22 +0200 Subject: prctl.c: no need to include stdarg.h and extern Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- libc/sysdeps/linux/common/prctl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libc/sysdeps/linux/common/prctl.c') 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 -- cgit v1.2.3