|
3 | 3 | * procedural language
|
4 | 4 | *
|
5 | 5 | * IDENTIFICATION
|
6 |
| - * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.9 1999/09/2002:12:31 momjian Exp $ |
| 6 | + * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.10 1999/09/2022:28:05 momjian Exp $ |
7 | 7 | *
|
8 | 8 | * This software is copyrighted by Jan Wieck - Hamburg.
|
9 | 9 | *
|
|
66 | 66 | * Variables in the parser that shouldn't go into plpgsql.h
|
67 | 67 | * ----------
|
68 | 68 | */
|
69 |
| -externPLPGSQL_YYSTYPEplpgsql_yylval; |
70 |
| -externcharplpgsql_yytext[]; |
71 |
| - |
72 |
| -/* We have to define this as non-extern somewhere for bsdi bjm 1999/09/19 */ |
73 |
| -intplpgsql_yylineno; |
74 |
| - |
| 69 | +PLPGSQL_YYSTYPEplpgsql_yylval; |
| 70 | +charplpgsql_yytext[]; |
| 71 | +intplpgsql_yylineno; |
75 | 72 | voidplpgsql_yyerror(constchar*s);
|
76 | 73 |
|
77 | 74 | /* ----------
|
|