Skip to content

Commit fd70635

Browse files
committed
Fix compatibility with gcc 10.
1 parent df5a87f commit fd70635

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
postgresql-numeral (1.3-1) unstable; urgency=medium
2+
3+
* Fix compatibility with gcc 10.
4+
5+
-- Christoph Berg <myon@debian.org> Tue, 28 Jul 2020 22:10:46 +0200
6+
17
postgresql-numeral (1.2-1) unstable; urgency=medium
28

39
* Fix passbyvalue logic on PG13/32-bit.

romanfuncs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (C) 2017 Christoph Berg
2+
Copyright (C) 2017-2020 Christoph Berg
33
44
This program is free software; you can redistribute it and/or modify
55
it under the terms of the GNU General Public License as published by
@@ -18,7 +18,7 @@ GNU General Public License for more details.
1818

1919
/* input and output */
2020

21-
char *yyerrstr; /* copy of error catched by yyromanerror() */
21+
extern char *yyerrstr; /* copy of error catched by yyromanerror() */
2222

2323
void yyromanerror (char *s);
2424

zahlfuncs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (C) 2017 Christoph Berg
2+
Copyright (C) 2017-2020 Christoph Berg
33
44
This program is free software; you can redistribute it and/or modify
55
it under the terms of the GNU General Public License as published by
@@ -18,7 +18,7 @@ GNU General Public License for more details.
1818

1919
/* input and output */
2020

21-
char *yyerrstr; /* copy of error catched by yyzahlerror() */
21+
extern char *yyerrstr; /* copy of error catched by yyzahlerror() */
2222

2323
void yyzahlerror (char *s);
2424

0 commit comments

Comments
 (0)