diff options
Diffstat (limited to 'usr.sbin/mrouted/cfparse.y')
-rw-r--r-- | usr.sbin/mrouted/cfparse.y | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/usr.sbin/mrouted/cfparse.y b/usr.sbin/mrouted/cfparse.y index 0ac0123b8e9..4dbeae54eff 100644 --- a/usr.sbin/mrouted/cfparse.y +++ b/usr.sbin/mrouted/cfparse.y @@ -35,14 +35,14 @@ /* * Local function declarations */ -static void fatal __P((char *fmt, ...)); -static void warn __P((char *fmt, ...)); -static void yyerror __P((char *s)); -static char * next_word __P((void)); -static int yylex __P((void)); -static u_int32_t valid_if __P((char *s)); -static struct ifreq * ifconfaddr __P((struct ifconf *ifcp, u_int32_t a)); -int yyparse __P((void)); +static void fatal(char *fmt, ...); +static void warn(char *fmt, ...); +static void yyerror(char *s); +static char * next_word(void); +static int yylex(void); +static u_int32_t valid_if(char *s); +static struct ifreq * ifconfaddr(struct ifconf *ifcp, u_int32_t a); +int yyparse(void); static FILE *f; |