diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-07-28 20:38:32 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-07-28 20:38:32 +0000 |
commit | bfb1d0762736ff47068ba8804f8ee720b89bad01 (patch) | |
tree | 1f47c9bc9b23d909d8b37c63e3d4a11a2d55345b /usr.bin/lex/libyywrap.c | |
parent | 6bb20d89bbb0730289d06ac09883d2d4e5e11604 (diff) |
cleanup library parts
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; - } +} |