diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-08-08 05:28:52 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-08-08 05:28:52 +0000 |
commit | 1b2442d41e120d3585922d981a478bff4f357337 (patch) | |
tree | 4a43fe614f540f3beaaca060515264e8af6de977 /libc/stdlib/system.c | |
parent | 62a7b2c54013b0f7e312cb439ce865cd24884bd8 (diff) | |
download | uClibc-alpine-1b2442d41e120d3585922d981a478bff4f357337.tar.bz2 uClibc-alpine-1b2442d41e120d3585922d981a478bff4f357337.tar.xz |
Cleanup some silly warnings
Diffstat (limited to 'libc/stdlib/system.c')
-rw-r--r-- | libc/stdlib/system.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/stdlib/system.c b/libc/stdlib/system.c index b15d601aa..b365ef82e 100644 --- a/libc/stdlib/system.c +++ b/libc/stdlib/system.c @@ -10,8 +10,7 @@ #define vfork fork #endif -int __libc_system(command) -char *command; +int __libc_system(char *command) { int wait_val, pid; __sighandler_t save_quit, save_int, save_chld; |