From aee750afe9b70e9c7a69142ed672e221e3645f19 Mon Sep 17 00:00:00 2001
From: Peter S. Mazinger <ps.m@gmx.net>
Date: Sat, 16 Apr 2011 02:07:22 +0200
Subject: [PATCH 276/396] prctl.c: no need to include stdarg.h and extern

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
---
 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
-- 
1.7.0.4

