diff options
Diffstat (limited to 'src/include/utils/tzparser.h')
-rw-r--r-- | src/include/utils/tzparser.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/utils/tzparser.h b/src/include/utils/tzparser.h index ba18819ef59..2065078116a 100644 --- a/src/include/utils/tzparser.h +++ b/src/include/utils/tzparser.h @@ -13,6 +13,8 @@ #ifndef TZPARSER_H #define TZPARSER_H +#include "utils/datetime.h" + /* * The result of parsing a timezone configuration file is an array of * these structs, in order by abbrev. We export this because datetime.c @@ -30,6 +32,6 @@ typedef struct tzEntry } tzEntry; -extern bool load_tzoffsets(const char *filename, bool doit, int elevel); +extern TimeZoneAbbrevTable *load_tzoffsets(const char *filename); #endif /* TZPARSER_H */ |