Skip to content

Commit 80751a7

Browse files
committed
Make proper plpgsql non-externs.
1 parent 77bbd71 commit 80751a7

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

src/pl/plpgsql/src/pl_comp.c

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* procedural language
44
*
55
* IDENTIFICATION
6-
* $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.9 1999/09/20 02:12:31 momjian Exp $
6+
* $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.10 1999/09/20 22:28:05 momjian Exp $
77
*
88
* This software is copyrighted by Jan Wieck - Hamburg.
99
*
@@ -66,12 +66,9 @@
6666
* Variables in the parser that shouldn't go into plpgsql.h
6767
* ----------
6868
*/
69-
extern PLPGSQL_YYSTYPE plpgsql_yylval;
70-
extern char plpgsql_yytext[];
71-
72-
/* We have to define this as non-extern somewhere for bsdi bjm 1999/09/19 */
73-
int plpgsql_yylineno;
74-
69+
PLPGSQL_YYSTYPE plpgsql_yylval;
70+
char plpgsql_yytext[];
71+
int plpgsql_yylineno;
7572
void plpgsql_yyerror(const char *s);
7673

7774
/* ----------

0 commit comments

Comments
 (0)