about summary refs log tree commit diff
path: root/timezone/private.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-10-12 06:19:23 +0000
committerUlrich Drepper <drepper@redhat.com>2004-10-12 06:19:23 +0000
commitdaa6fd8885a39a74a17b5716dfb3b9654912a130 (patch)
tree23906d7043f545664e8e7e39a70b3c336f96fdc3 /timezone/private.h
parentf448d449c7713a4b1aadf21e06aa588e329210d0 (diff)
downloadglibc-daa6fd8885a39a74a17b5716dfb3b9654912a130.tar.gz
glibc-daa6fd8885a39a74a17b5716dfb3b9654912a130.tar.xz
glibc-daa6fd8885a39a74a17b5716dfb3b9654912a130.zip
	* 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.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/timezone/private.h b/timezone/private.h
index c8f4548683..57663052f0 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));