1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-07 19:06:32 +03:00
Files
postgres/src/interfaces/ecpg/preproc/extern.h
Marc G. Fournier 1d6424b1fb From: Michael Meskes <meskes@topsystem.de>
Here's my next patch. this one should fix some more bugs. ecpg now fully
understands the whenever statement.
1998-02-19 13:52:17 +00:00

15 lines
293 B
C

/* variables */
extern int debugging, braces_open;
extern char * yytext;
extern int yylineno, yyleng;
extern FILE *yyin, *yyout;
/* functions */
extern void lex_init(void);
extern char * input_filename;
extern int yyparse(void);
extern void *mm_alloc(size_t), *mm_realloc(void *, size_t);