diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | time/tzfile.c | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2013-01-25 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com> + + * time/tzfile.c: Include stdint.h for SIZE_MAX. + 2013-01-25 Thomas Schwinge <thomas@codesourcery.com> * configure.in (_AC_PROG_CC_C89): New definition. diff --git a/time/tzfile.c b/time/tzfile.c index 0725e2f6f6..2e3a7b69bf 100644 --- a/time/tzfile.c +++ b/time/tzfile.c @@ -24,6 +24,7 @@ #include <time.h> #include <unistd.h> #include <sys/stat.h> +#include <stdint.h> #define NOID #include <timezone/tzfile.h> |