diff options
author | cracauer <cracauer@FreeBSD.org> | 2000-04-20 09:31:54 +0000 |
---|---|---|
committer | cracauer <cracauer@FreeBSD.org> | 2000-04-20 09:31:54 +0000 |
commit | 582b546eb7cf75ea34c125f7893cf78079c7a160 (patch) | |
tree | 406422e490b0f462174addbe473da7c96d907a8c /usr.bin/printf/printf.c | |
parent | b16447febc6c99b3d22729020037fe3d27d6de02 (diff) | |
download | FreeBSD-src-582b546eb7cf75ea34c125f7893cf78079c7a160.zip FreeBSD-src-582b546eb7cf75ea34c125f7893cf78079c7a160.tar.gz |
Remove redundat extern declaration
Diffstat (limited to 'usr.bin/printf/printf.c')
-rw-r--r-- | usr.bin/printf/printf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/printf/printf.c b/usr.bin/printf/printf.c index 4c78783..f135f56 100644 --- a/usr.bin/printf/printf.c +++ b/usr.bin/printf/printf.c @@ -41,6 +41,8 @@ static char const copyright[] = #ifndef lint static char const sccsid[] = "@(#)printf.c 8.1 (Berkeley) 7/20/93"; +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <sys/types.h> @@ -100,7 +102,6 @@ main(argc, argv) int argc; char *argv[]; { - extern int optind; static char *skip1, *skip2; int ch, end, fieldwidth, precision; char convch, nextch, *format, *fmt, *start; |