File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 3
3
* procedural language
4
4
*
5
5
* IDENTIFICATION
6
- * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.16 2000/01/15 22:43:25 tgl Exp $
6
+ * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.17 2000/01/20 05:44:34 tgl Exp $
7
7
*
8
8
* This software is copyrighted by Jan Wieck - Hamburg.
9
9
*
@@ -90,8 +90,6 @@ PLpgSQL_function *plpgsql_curr_compile;
90
90
* Local function declarations
91
91
* ----------
92
92
*/
93
- extern void plpgsql_yyerror (const char * s );
94
-
95
93
static char * xlateSqlType (char * name );
96
94
97
95
Original file line number Diff line number Diff line change 3
3
* procedural language
4
4
*
5
5
* IDENTIFICATION
6
- * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/plpgsql.h,v 1.7 2000/01/15 22:43:25 tgl Exp $
6
+ * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/plpgsql.h,v 1.8 2000/01/20 05:44:34 tgl Exp $
7
7
*
8
8
* This software is copyrighted by Jan Wieck - Hamburg.
9
9
*
@@ -496,9 +496,9 @@ extern char *plpgsql_tolower(char *s);
496
496
*/
497
497
extern PLpgSQL_expr * plpgsql_read_expression (int until , char * s );
498
498
extern void plpgsql_yyrestart (FILE * fp );
499
- extern int plpgsql_yylex ();
499
+ extern int plpgsql_yylex (void );
500
500
extern void plpgsql_setinput (char * s , int functype );
501
- extern int plpgsql_yyparse ();
502
-
501
+ extern int plpgsql_yyparse (void );
502
+ extern void plpgsql_yyerror ( const char * s );
503
503
504
504
#endif /* PLPGSQL_H */
You can’t perform that action at this time.
0 commit comments