From: Todd C. Miller Date: Thu, 8 Jul 1999 09:45:16 +0000 (+0000) Subject: interfaces and num_interfaces are now auto, not extern X-Git-Tag: SUDO_1_6_0~258 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=feb78be26e7ce8e99aa1cdbc367edff74d50a476;p=sudo interfaces and num_interfaces are now auto, not extern --- diff --git a/testsudoers.c b/testsudoers.c index 13a44d173..1293e1094 100644 --- a/testsudoers.c +++ b/testsudoers.c @@ -73,9 +73,9 @@ static const char rcsid[] = "$Sudo$"; * Globals */ int parse_error = FALSE; +struct interface *interfaces; +int num_interfaces; extern int clearaliases; -extern struct interface *interfaces; -extern int num_interfaces; char *cmnd = NULL; char *cmnd_args = NULL;