1 /* $NetBSD: null_lex.l,v 1.1.1.2 2015/01/17 16:34:17 christos Exp $ */ 2 3 %{ 4 #include "null_gram.h" 5 null_error(const char * fmt,...)6 void null_error(const char *fmt, ...) {} yywrap(void)7 int yywrap(void) { return 0; } 8 %} 9 %option nounput 10 %option noinput 11 %% 12