summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/wait.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-06-11 19:22:42 +0200
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-06-11 19:22:42 +0200
commit13433395f2fd808006cd07b05b79cae193c6ecb9 (patch)
treec0b8784782610e4e15c256f70008943ae7d75a6a /libc/sysdeps/linux/common/wait.c
parent8642c931a3ef2e944871b32b293df872eb7a1ae0 (diff)
silence some warnings about missing prototypes
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/common/wait.c')
-rw-r--r--libc/sysdeps/linux/common/wait.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/wait.c b/libc/sysdeps/linux/common/wait.c
index d4b79bd37..9b529eb21 100644
--- a/libc/sysdeps/linux/common/wait.c
+++ b/libc/sysdeps/linux/common/wait.c
@@ -10,6 +10,7 @@
#include <sys/wait.h>
#include <sys/resource.h>
+extern __typeof(wait) __libc_wait;
/* Wait for a child to die. When one does, put its status in *STAT_LOC
* and return its process ID. For errors, return (pid_t) -1. */
#ifdef __UCLIBC_HAS_THREADS_NATIVE__