diff options
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/cube/cubeparse.y | 4 | ||||
-rw-r--r-- | contrib/seg/segparse.y | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/contrib/cube/cubeparse.y b/contrib/cube/cubeparse.y index b39fbe63e6b..fd56d0e1628 100644 --- a/contrib/cube/cubeparse.y +++ b/contrib/cube/cubeparse.y @@ -11,6 +11,10 @@ #include "utils/float.h" #include "varatt.h" +/* silence -Wmissing-variable-declarations */ +extern int cube_yychar; +extern int cube_yynerrs; + /* All grammar constructs return strings */ #define YYSTYPE char * diff --git a/contrib/seg/segparse.y b/contrib/seg/segparse.y index bf759dbbd84..729d4b6390b 100644 --- a/contrib/seg/segparse.y +++ b/contrib/seg/segparse.y @@ -13,6 +13,10 @@ #include "segdata.h" +/* silence -Wmissing-variable-declarations */ +extern int seg_yychar; +extern int seg_yynerrs; + /* * Bison doesn't allocate anything that needs to live across parser calls, * so we can easily have it use palloc instead of malloc. This prevents |