mirror of
https://github.com/postgres/postgres.git
synced 2025-11-07 19:06:32 +03:00
Here's my next patch. this one should fix some more bugs. ecpg now fully understands the whenever statement.
15 lines
293 B
C
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);
|