null_lex.l revision 1.1.1.1
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
6void yyerror(const char *fmt, ...) {}
7int yywrap(void) { return 0; }
8%}
9%%
10