xref: /netbsd-src/external/bsd/am-utils/dist/fsinfo/null_lex.l (revision 48fb7bfab72acd4281a53bbee5ccf3f809019e75)
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