summaryrefslogtreecommitdiff
path: root/libc/stdlib
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/stdlib
parent8642c931a3ef2e944871b32b293df872eb7a1ae0 (diff)
silence some warnings about missing prototypes
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/stdlib')
-rw-r--r--libc/stdlib/system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdlib/system.c b/libc/stdlib/system.c
index 4f54d1df9..acd86761d 100644
--- a/libc/stdlib/system.c
+++ b/libc/stdlib/system.c
@@ -17,6 +17,7 @@
#include <sysdep-cancel.h>
#endif
+extern __typeof(system) __libc_system;
/* TODO: the cancellable version breaks on sparc currently,
* need to figure out why still
@@ -28,7 +29,6 @@
# define vfork fork
#endif
-extern __typeof(system) __libc_system;
int __libc_system(const char *command)
{
int wait_val, pid;