1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-25 01:02:05 +03:00

Fix inconsistent static-vs-not-static declarations.

This commit is contained in:
Tom Lane
2003-08-01 18:03:57 +00:00
parent 38a412ec39
commit 3a1ed8761f
4 changed files with 7 additions and 10 deletions

View File

@ -228,9 +228,6 @@ do { \
* Date/time validation
* Include check for leap year.
*/
extern int day_tab[2][13];
#define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0))
/* Julian date support for date2j() and j2date()