diff options
Diffstat (limited to 'usr.bin/lex/libyywrap.c')
-rw-r--r-- | usr.bin/lex/libyywrap.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/lex/libyywrap.c b/usr.bin/lex/libyywrap.c index a45ac10dcc5..64682b58bac 100644 --- a/usr.bin/lex/libyywrap.c +++ b/usr.bin/lex/libyywrap.c @@ -1,15 +1,15 @@ -/* $OpenBSD: libyywrap.c,v 1.5 2002/02/16 21:27:47 millert Exp $ */ +/* $OpenBSD: libyywrap.c,v 1.6 2003/07/28 20:38:31 deraadt Exp $ */ /* libyywrap - flex run-time support library "yywrap" function */ -/* $Header: /cvs/OpenBSD/src/usr.bin/lex/libyywrap.c,v 1.5 2002/02/16 21:27:47 millert Exp $ */ +/* $Header: /cvs/OpenBSD/src/usr.bin/lex/libyywrap.c,v 1.6 2003/07/28 20:38:31 deraadt Exp $ */ #include <sys/cdefs.h> int yywrap(void); int -yywrap() - { +yywrap(void) +{ return 1; - } +} |