diff options
author | delphij <delphij@FreeBSD.org> | 2014-01-14 01:52:34 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2014-01-14 01:52:34 +0000 |
commit | 22c7ee83f61dc73c60942c528108e8b6220ed350 (patch) | |
tree | be4b7ee4e5e94e9fc3690d4fb8db5740f9ea5065 /lib/libc | |
parent | 8ad02b65ac954272d61efb54ab2b1508aaf74ae1 (diff) | |
download | FreeBSD-src-22c7ee83f61dc73c60942c528108e8b6220ed350.zip FreeBSD-src-22c7ee83f61dc73c60942c528108e8b6220ed350.tar.gz |
ANSI-fy prototype.
MFC after: 2 weeks
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/stdlib/getsubopt.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libc/stdlib/getsubopt.c b/lib/libc/stdlib/getsubopt.c index efff9da..d2db991 100644 --- a/lib/libc/stdlib/getsubopt.c +++ b/lib/libc/stdlib/getsubopt.c @@ -45,9 +45,7 @@ __FBSDID("$FreeBSD$"); char *suboptarg; int -getsubopt(optionp, tokens, valuep) - char **optionp, **valuep; - char * const *tokens; +getsubopt(char **optionp, char * const *tokens, char **valuep) { int cnt; char *p; |