1 /* $NetBSD: null_lex.l,v 1.1.1.1 2008/09/19 20:07:21 christos Exp $ */ 2 3 %{ 4 #include "null_gram.h" 5 6 void yyerror(const char *fmt, ...) {} 7 int yywrap(void) { return 0; } 8 %} 9 %% 10