diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-07-19 14:38:59 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-07-19 14:38:59 +0000 |
commit | ed66f77079bc5bb211e47ca10c75bcb842f05d30 (patch) | |
tree | 39a849ff4f37162a83f7226a42d71b594bb37c01 /bin/systrace/lex.l | |
parent | 771ab6f40e69d0d58417b233ebfc999aa73ac143 (diff) |
constify, have missing prototypes, use pedantic compilation options.
niels ok
Diffstat (limited to 'bin/systrace/lex.l')
-rw-r--r-- | bin/systrace/lex.l | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/systrace/lex.l b/bin/systrace/lex.l index 79d64b0cbc5..df1262a483f 100644 --- a/bin/systrace/lex.l +++ b/bin/systrace/lex.l @@ -1,4 +1,4 @@ -/* $OpenBSD: lex.l,v 1.6 2002/06/05 17:34:56 mickey Exp $ */ +/* $OpenBSD: lex.l,v 1.7 2002/07/19 14:38:58 itojun Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> @@ -48,6 +48,7 @@ #include "y.tab.h" int yyerror(char *fmt, ...); +int yylex(void); char *mystring; int myoff; |