Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7 8 9 10 11
/* $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 %%