You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
349 B
C

/*
* A little glue to keep generated lex code warning free
*/
#ifndef _LEX_H
#define _LEX_H
#include "ansidecl.h"
/* Fix up warnings from generated lex code */
static int input (yyscan_t) ATTRIBUTE_UNUSED;
static void yyunput (int, char *, yyscan_t) ATTRIBUTE_UNUSED;
int lex_get_column (yyscan_t);
void lex_set_column (int, yyscan_t);
#endif