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