1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

ecpg shouldn't depend on parser/gramparse.h. Also, eliminate some

compiler warnings caused by lack of extern declarations in extern.h.
I believe the remaining gcc warnings here would go away if the ecpg
grammar could be tweaked so it doesn't use REJECT ...
This commit is contained in:
Tom Lane
2000-01-20 05:23:26 +00:00
parent c02f1ead48
commit b6fdd14765
2 changed files with 3 additions and 3 deletions

View File

@ -36,11 +36,12 @@ extern void output_line_number(void);
extern void lex_init(void);
extern char *input_filename;
extern int yyparse(void);
extern int yylex(void);
extern void yyerror(char *);
extern void *mm_alloc(size_t), *mm_realloc(void *, size_t);
extern char *mm_strdup(const char *);
ScanKeyword *ScanECPGKeywordLookup(char *);
ScanKeyword *ScanCKeywordLookup(char *);
extern void yyerror(char *);
/* return codes */