diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-09-23 04:10:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-09-23 04:10:15 +0000 |
commit | 5b9dbaee0efeaf013f1e71dca96cd3d56c7f4d85 (patch) | |
tree | 3b24dfaa3185c3c5e16980d07b08585154d1acd4 /usr.bin/fgen | |
parent | e5c537e48a40d69509c6f79c53a8eb9d80ea3ef7 (diff) |
Add missing includes, breaks and semicolons to appease gcc3; David Krause
deraadt@ OK
Diffstat (limited to 'usr.bin/fgen')
-rw-r--r-- | usr.bin/fgen/fgen.l | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/fgen/fgen.l b/usr.bin/fgen/fgen.l index f1f3b375a1f..1b93e14eda6 100644 --- a/usr.bin/fgen/fgen.l +++ b/usr.bin/fgen/fgen.l @@ -1,5 +1,5 @@ %{ -/* $OpenBSD: fgen.l,v 1.5 2002/07/12 00:26:24 deraadt Exp $ */ +/* $OpenBSD: fgen.l,v 1.6 2002/09/23 04:10:14 millert Exp $ */ /* $NetBSD: fgen.l,v 1.12 2001/06/13 10:46:05 wiz Exp $ */ /* FLEX input for FORTH input file scanner */ /* @@ -1955,6 +1955,7 @@ tokenize(input) } break; default: + break; } } return; |