mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-09 07:06:38 -04:00
12 lines
209 B
Plaintext
12 lines
209 B
Plaintext
/* $NetBSD: null_lex.l,v 1.1.1.2 2015/01/17 16:34:17 christos Exp $ */
|
|
|
|
%{
|
|
#include "null_gram.h"
|
|
|
|
void null_error(const char *fmt, ...) {}
|
|
int yywrap(void) { return 0; }
|
|
%}
|
|
%option nounput
|
|
%option noinput
|
|
%%
|