diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-10-16 18:53:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-10-16 18:53:55 +0000 |
commit | c7a9f249c71b5014fdb7140e2f72686f7be802ac (patch) | |
tree | d908585879d3217919d88f64c9669137e31f1091 /time | |
parent | 0049f576d18869fcdf4b845ebb2d28e5178727bb (diff) | |
download | glibc-c7a9f249c71b5014fdb7140e2f72686f7be802ac.zip glibc-c7a9f249c71b5014fdb7140e2f72686f7be802ac.tar.gz glibc-c7a9f249c71b5014fdb7140e2f72686f7be802ac.tar.bz2 |
Update.
1998-10-16 Paul Eggert <eggert@shade.twinsun.com>
* time/mktime.c: Some systems require <unistd.h> to be
included before <time.h> for localtime_r to be declared
properly.
* time/strftime.c: Likewise.
Diffstat (limited to 'time')
-rw-r--r-- | time/mktime.c | 8 | ||||
-rw-r--r-- | time/strftime.c | 6 |
2 files changed, 13 insertions, 1 deletions
diff --git a/time/mktime.c b/time/mktime.c index fda08a2..0fa92e0 100644 --- a/time/mktime.c +++ b/time/mktime.c @@ -47,6 +47,12 @@ # define LEAP_SECONDS_POSSIBLE 1 #endif +/* Some systems require <unistd.h> to be included before <time.h> + for localtime_r to be declared properly. */ +#if HAVE_UNISTD_H +# include <unistd.h> +#endif + #include <sys/types.h> /* Some systems define `time_t' here. */ #include <time.h> @@ -64,7 +70,7 @@ #endif /* DEBUG */ #ifndef __P -# if defined (__GNUC__) || (defined (__STDC__) && __STDC__) +# if defined __GNUC__ || (defined __STDC__ && __STDC__) # define __P(args) args # else # define __P(args) () diff --git a/time/strftime.c b/time/strftime.c index 438384c..69babad 100644 --- a/time/strftime.c +++ b/time/strftime.c @@ -46,6 +46,12 @@ #include <ctype.h> #include <sys/types.h> /* Some systems define `time_t' here. */ +/* Some systems require <unistd.h> to be included before <time.h> + for localtime_r to be declared properly. */ +#if HAVE_UNISTD_H +# include <unistd.h> +#endif + #ifdef TIME_WITH_SYS_TIME # include <sys/time.h> # include <time.h> |