Clean up some minor gcc warnings.

This commit is contained in:
Tom Lane 1999-12-20 01:41:32 +00:00
parent ec806d72c0
commit 76b110c82a
1 changed files with 6 additions and 5 deletions

View File

@ -3,7 +3,7 @@
* procedural language * procedural language
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.13 1999/11/22 17:56:39 momjian Exp $ * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.14 1999/12/20 01:41:32 tgl Exp $
* *
* This software is copyrighted by Jan Wieck - Hamburg. * This software is copyrighted by Jan Wieck - Hamburg.
* *
@ -66,10 +66,9 @@
* Variables in the parser that shouldn't go into plpgsql.h * Variables in the parser that shouldn't go into plpgsql.h
* ---------- * ----------
*/ */
PLPGSQL_YYSTYPE plpgsql_yylval; extern PLPGSQL_YYSTYPE plpgsql_yylval;
char plpgsql_yytext[]; extern char plpgsql_yytext[];
int plpgsql_yylineno; extern int plpgsql_yylineno;
void plpgsql_yyerror(const char *s);
/* ---------- /* ----------
* Our own local and global variables * Our own local and global variables
@ -91,6 +90,8 @@ PLpgSQL_function *plpgsql_curr_compile;
* Local function declarations * Local function declarations
* ---------- * ----------
*/ */
extern void plpgsql_yyerror(const char *s);
static char *xlateSqlType(char *name); static char *xlateSqlType(char *name);