webidl-0.1: cbits/lexer.c
/* C code to glue the lexer and Haskell code */
#include "lexer.h"
/* Globals (bad, but we are decades back now...) */
YYLTYPE yylloc, *p_yylloc;
tokval yylval, *p_yylval;
/* Exactly as the default library libfl defines */
int yywrap (void) {
return 1;
}