diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-10-12 06:19:23 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-10-12 06:19:23 +0000 |
commit | daa6fd8885a39a74a17b5716dfb3b9654912a130 (patch) | |
tree | 23906d7043f545664e8e7e39a70b3c336f96fdc3 /timezone/private.h | |
parent | f448d449c7713a4b1aadf21e06aa588e329210d0 (diff) | |
download | glibc-daa6fd8885a39a74a17b5716dfb3b9654912a130.zip glibc-daa6fd8885a39a74a17b5716dfb3b9654912a130.tar.gz glibc-daa6fd8885a39a74a17b5716dfb3b9654912a130.tar.bz2 |
* timezone/asia: Update from tzdata2004e.
* timezone/southamerica: Likewise.
* timezone/private.h: Update from tzcode2004e.
* timezone/zdump.c: Likewise.
Diffstat (limited to 'timezone/private.h')
-rw-r--r-- | timezone/private.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/timezone/private.h b/timezone/private.h index c8f4548..5766305 100644 --- a/timezone/private.h +++ b/timezone/private.h @@ -21,7 +21,7 @@ #ifndef lint #ifndef NOID -static char privatehid[] = "@(#)private.h 7.53"; +static char privatehid[] = "@(#)private.h 7.54"; #endif /* !defined NOID */ #endif /* !defined lint */ @@ -190,11 +190,22 @@ extern int unlink P((const char * filename)); ** But some newer errno.h implementations define it as a macro. ** Fix the former without affecting the latter. */ + #ifndef errno extern int errno; #endif /* !defined errno */ /* +** Some time.h implementations don't declare asctime_r. +** Others might define it as a macro. +** Fix the former without affecting the latter. +*/ + +#ifndef asctime_r +extern char * asctime_r(); +#endif + +/* ** Private function declarations. */ char * icalloc P((int nelem, int elsize)); |