]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - atc/lex.l
trailing whitespace
[bsdgames-darwin.git] / atc / lex.l
index 3e90b76e56023d64af8bf7ca724ad69e5ac51a31..01e38278a9d6b7a122c728e3fe53cdfea0fa5246 100644 (file)
--- a/atc/lex.l
+++ b/atc/lex.l
@@ -1,5 +1,5 @@
 %{
-/*     $NetBSD: lex.l,v 1.7 2003/08/07 09:36:54 agc Exp $      */
+/*     $NetBSD: lex.l,v 1.9 2015/06/19 06:02:31 dholland Exp $ */
 
 /*-
  * Copyright (c) 1990, 1993
 #if 0
 static char sccsid[] = "@(#)lex.l      8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: lex.l,v 1.7 2003/08/07 09:36:54 agc Exp $");
+__RCSID("$NetBSD: lex.l,v 1.9 2015/06/19 06:02:31 dholland Exp $");
 #endif
 #endif /* not lint */
 
-#include "include.h"
 #undef ECHO            /* XXX: work around lex(1) vs termios lameness */
 #include "grammar.h"
 
 extern int     line;
 
 %}
+%option nounput noinput
 %%
 [0-9]+                 { yylval.ival = atoi(yytext);  return(ConstOp); }
 height                 { return(HeightOp); }