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