diff options
author | ed <ed@FreeBSD.org> | 2009-12-05 19:31:38 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2009-12-05 19:31:38 +0000 |
commit | 06fcc20479dbea7b80fde60d667c7455ca58c451 (patch) | |
tree | 7888f1fc2bd55cbcf966048d3b4db70a78bdb2b3 /lib/libc/stdlib/system.c | |
parent | e912442e98904e4d3d77ac344f9a353688ca3e9f (diff) | |
download | FreeBSD-src-06fcc20479dbea7b80fde60d667c7455ca58c451.zip FreeBSD-src-06fcc20479dbea7b80fde60d667c7455ca58c451.tar.gz |
Fix many "function declaration isn't a prototype" warnings in libc.
I've only fixed code that seems to be written by `us'. There are still
many warnings like this present in resolv/, rpc/, stdtime/ and yp/.
Diffstat (limited to 'lib/libc/stdlib/system.c')
-rw-r--r-- | lib/libc/stdlib/system.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/stdlib/system.c b/lib/libc/stdlib/system.c index 08de630..4f47edf 100644 --- a/lib/libc/stdlib/system.c +++ b/lib/libc/stdlib/system.c @@ -46,8 +46,7 @@ __FBSDID("$FreeBSD$"); #include "libc_private.h" int -__system(command) - const char *command; +__system(const char *command) { pid_t pid, savedpid; int pstat; |