]> granicus.if.org Git - postgresql/commitdiff
Made prototypes for yyerror() consistent with Bruce's last changes
authorJan Wieck <JanWieck@Yahoo.com>
Fri, 4 Feb 2000 18:45:23 +0000 (18:45 +0000)
committerJan Wieck <JanWieck@Yahoo.com>
Fri, 4 Feb 2000 18:45:23 +0000 (18:45 +0000)
Jan

src/interfaces/ecpg/preproc/extern.h
src/interfaces/ecpg/preproc/preproc.y

index 682ead43ec81b9154c66c2632833f16da61b7f80..9aae32af26deb64bb8999be66808b1baa9750095 100644 (file)
@@ -37,7 +37,7 @@ extern void lex_init(void);
 extern char *input_filename;
 extern int     yyparse(void);
 extern int     yylex(void);
-extern void yyerror(char *);
+extern void yyerror(const char * error);
 extern void *mm_alloc(size_t), *mm_realloc(void *, size_t);
 extern char *mm_strdup(const char *);
 extern void mmerror(enum errortype, char * );
index 7b8d16f31a474738e1abc94fd153ed4ac0ce2421..28b66abb24aaf1370ebecf1b8a3d703e0f1a97fb 100644 (file)
@@ -5428,7 +5428,7 @@ blockend : '}' {
 
 %%
 
-void yyerror(char * error)
+void yyerror(const char * error)
 {
        mmerror(ET_ERROR, error);
 }