xref: /netbsd-src/external/bsd/am-utils/dist/fsinfo/null_lex.l (revision 4d342c046e3288fb5a1edcd33cfec48c41c80664)
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 
6 void null_error(const char *fmt, ...) {}
7 int yywrap(void) { return 0; }
8 %}
9 %option nounput
10 %option noinput
11 %%
12