diff options
author | 2002-07-30 05:39:31 +0000 | |
---|---|---|
committer | 2002-07-30 05:39:31 +0000 | |
commit | 6ca2b055a0079d8b7c1580051ccb3e75e45acff9 (patch) | |
tree | 6d1ab9b3150bd0189f0f3042859bbbc26326a72c | |
parent | include filter.h, dont' duplicate prototype (diff) | |
download | wireguard-openbsd-6ca2b055a0079d8b7c1580051ccb3e75e45acff9.tar.xz wireguard-openbsd-6ca2b055a0079d8b7c1580051ccb3e75e45acff9.zip |
sync prototype for yyerror().
-rw-r--r-- | bin/systrace/lex.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/systrace/lex.l b/bin/systrace/lex.l index df1262a483f..5200dbe1f31 100644 --- a/bin/systrace/lex.l +++ b/bin/systrace/lex.l @@ -1,4 +1,4 @@ -/* $OpenBSD: lex.l,v 1.7 2002/07/19 14:38:58 itojun Exp $ */ +/* $OpenBSD: lex.l,v 1.8 2002/07/30 05:39:31 itojun Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> @@ -47,7 +47,7 @@ #include "systrace.h" #include "y.tab.h" -int yyerror(char *fmt, ...); +extern int yyerror(const char *fmt, ...); int yylex(void); char *mystring; |