summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2002-07-30 05:39:32 +0000
committerJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2002-07-30 05:39:32 +0000
commitc1773af84c6c752eb4af2d015cc80e7085fb256c (patch)
tree9ecec8e40f82c051bf0acc712006e0f9de2439df /bin
parentc3d50979a253e7fa697e1d13c2ca74f9787e5ad0 (diff)
sync prototype for yyerror().
Diffstat (limited to 'bin')
-rw-r--r--bin/systrace/lex.l4
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;