diff options
author | Martin Natano <natano@cvs.openbsd.org> | 2016-10-16 09:19:16 +0000 |
---|---|---|
committer | Martin Natano <natano@cvs.openbsd.org> | 2016-10-16 09:19:16 +0000 |
commit | 187a6344e8079dbfeafbc650f3f35db527f4d77c (patch) | |
tree | 926f5218f303d738440f37bf676a3d7f00e863f2 /usr.sbin | |
parent | 0a717aae3b232095924eb23ac57806daa7e5b3ed (diff) |
Remove declarations for optarg and optind. They are declared in <unistd.h>.
ok tb
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/config/main.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.sbin/config/main.c b/usr.sbin/config/main.c index 193e9dd6f4b..d01f62e91ac 100644 --- a/usr.sbin/config/main.c +++ b/usr.sbin/config/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.53 2016/10/16 08:47:17 natano Exp $ */ +/* $OpenBSD: main.c,v 1.54 2016/10/16 09:19:15 natano Exp $ */ /* $NetBSD: main.c,v 1.22 1997/02/02 21:12:33 thorpej Exp $ */ /* @@ -58,9 +58,6 @@ int firstfile(const char *); int yyparse(void); -extern char *optarg; -extern int optind; - static struct hashtab *mkopttab; static struct nvlist **nextopt; static struct nvlist **nextdefopt; |