File: lex.h

package info (click to toggle)
liburjtag 2024.03.24-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,492 kB
  • sloc: ansic: 53,835; yacc: 2,159; lex: 1,545; vhdl: 1,324; makefile: 1,249; python: 72; sed: 16; sh: 11
file content (24 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * A little glue to keep generated lex code warning free
 */

#ifndef _LEX_H
#define _LEX_H

#ifdef  __cplusplus
extern "C" {
#endif

#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);

#ifdef  __cplusplus
}
#endif

#endif