File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 4
4
* procedural language
5
5
*
6
6
* IDENTIFICATION
7
- * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/gram.y,v 1.6 1999/08/09 00:08:52 momjian Exp $
7
+ * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/gram.y,v 1.7 1999/08/16 19:57:21 momjian Exp $
8
8
*
9
9
* This software is copyrighted by Jan Wieck - Hamburg.
10
10
*
39
39
#include " stdio.h"
40
40
#include " string.h"
41
41
#include " plpgsql.h"
42
- #include " pl_scan.c" /* BSD Yacc doesn't like it here.
43
- It wants it after the %% */
42
+ #ifdef YYBISON
43
+ #include " pl_scan.c" /* GNU bison wants it here */
44
+ #endif
44
45
45
46
46
47
@@ -1082,6 +1083,11 @@ lno :
1082
1083
1083
1084
%%
1084
1085
1086
+ #ifndef YYBISON
1087
+ #include " pl_scan.c" /* BSD yacc wants it here */
1088
+ #endif
1089
+
1090
+
1085
1091
PLpgSQL_expr *
1086
1092
plpgsql_read_expression (int until, char *s)
1087
1093
{
You can’t perform that action at this time.
0 commit comments