mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 19:00:07 +00:00
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.
This commit is contained in:
parent
0049f576d1
commit
c7a9f249c7
@ -1,3 +1,10 @@
|
||||
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.
|
||||
|
||||
1998-10-16 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* db/Makefile: Add rule to generate shared object with the soname
|
||||
|
@ -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) ()
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user