diff options
author | Hans Petter Selasky <hselasky@FreeBSD.org> | 2018-05-18 12:21:19 +0000 |
---|---|---|
committer | Hans Petter Selasky <hselasky@FreeBSD.org> | 2018-05-18 12:21:19 +0000 |
commit | d109bf9e4b609b5a0626b433e56db4a47dc530bb (patch) | |
tree | 48bc2a4852c42b213448a7e9d93f2e5eb6348ea0 /missing/getopt.c | |
parent | 2369c04eb959fda4140b71f1c78798251bf43b62 (diff) | |
download | src-test2-d109bf9e4b609b5a0626b433e56db4a47dc530bb.tar.gz src-test2-d109bf9e4b609b5a0626b433e56db4a47dc530bb.zip |
Notes
Diffstat (limited to 'missing/getopt.c')
-rw-r--r-- | missing/getopt.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/missing/getopt.c b/missing/getopt.c index cc798e1de84d..7c897c6f5936 100644 --- a/missing/getopt.c +++ b/missing/getopt.c @@ -56,10 +56,7 @@ char *optarg; /* argument associated with option */ * Parse argc/argv argument vector. */ int -getopt(nargc, nargv, ostr) - int nargc; - char * const *nargv; - const char *ostr; +getopt(int nargc, char * const *nargv, const char *ostr) { char *cp; static char *__progname; |