diff options
author | Warner Losh <imp@FreeBSD.org> | 2000-09-04 06:09:54 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2000-09-04 06:09:54 +0000 |
commit | 62f882d620bdfa783c01626012d69f468ba34e28 (patch) | |
tree | 61f47bc195ec448ef18491672dd800c17c51c67d /usr.bin/ranlib | |
parent | b07b8563ff4c0802ccb1cefdc6aca67c8896c6d1 (diff) | |
download | src-62f882d620bdfa783c01626012d69f468ba34e28.tar.gz src-62f882d620bdfa783c01626012d69f468ba34e28.zip |
getopt and friends are declared in <unistd.h>
getopt returns -1 not EOF.
Notes
Notes:
svn path=/head/; revision=65428
Diffstat (limited to 'usr.bin/ranlib')
-rw-r--r-- | usr.bin/ranlib/ranlib.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/usr.bin/ranlib/ranlib.c b/usr.bin/ranlib/ranlib.c index 40263318e6a6..6177984705f7 100644 --- a/usr.bin/ranlib/ranlib.c +++ b/usr.bin/ranlib/ranlib.c @@ -68,7 +68,6 @@ main(argc, argv) int argc; char **argv; { - extern int optind; int ch, eval, tflag; tflag = 0; |