summaryrefslogtreecommitdiff
path: root/libc/misc/time
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-11-25 15:52:24 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-11-25 15:52:24 +0000
commit9d6d4ac6476107b42a9bdca8e794fdb309aeca28 (patch)
treeeeddf0b89bca316980aeb1f6385b71b97863b21e /libc/misc/time
parent841a3b472edefdade4435128d1b47b2dee25841e (diff)
- hide some time related relocs
Diffstat (limited to 'libc/misc/time')
-rw-r--r--libc/misc/time/time.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/libc/misc/time/time.c b/libc/misc/time/time.c
index ae800e1ca..4bc1aafd9 100644
--- a/libc/misc/time/time.c
+++ b/libc/misc/time/time.c
@@ -1747,9 +1747,12 @@ static const char vals[] = {
#define DEFAULT_2007_RULES (vals + 38)
/* Initialize to UTC. */
-int daylight = 0;
-long timezone = 0;
-char *tzname[2] = { (char *) UTC, (char *) (UTC-1) };
+int __daylight attribute_hidden = 0;
+weak_alias(__daylight, daylight)
+long __timezone attribute_hidden = 0;
+weak_alias(__timezone, timezone)
+char *__tzname[2] attribute_hidden = { (char *) UTC, (char *) (UTC-1) };
+weak_alias(__tzname, tzname)
__UCLIBC_MUTEX_INIT(_time_tzlock, PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP);
@@ -2059,10 +2062,10 @@ SKIP_OFFSET:
memcpy(_time_tzinfo, new_rules, sizeof(new_rules));
DONE:
- tzname[0] = _time_tzinfo[0].tzname;
- tzname[1] = _time_tzinfo[1].tzname;
- daylight = !!_time_tzinfo[1].tzname[0];
- timezone = _time_tzinfo[0].gmt_offset;
+ __tzname[0] = _time_tzinfo[0].tzname;
+ __tzname[1] = _time_tzinfo[1].tzname;
+ __daylight = !!_time_tzinfo[1].tzname[0];
+ __timezone = _time_tzinfo[0].gmt_offset;
#if defined(__UCLIBC_HAS_TZ_FILE__) || defined(__UCLIBC_HAS_TZ_CACHING__)
FAST_DONE: