diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-10-21 18:32:59 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-10-21 18:32:59 +0000 |
commit | 1cc0860dd18fc81e8daff3511b38cc31b0c88c4a (patch) | |
tree | 8ca0e6095b072e6357dd9597384dc07194b01b2f /libc/misc | |
parent | 8cadaf66b786cc5c53acf73f901341dcd87b778b (diff) |
More IMA compiling
Diffstat (limited to 'libc/misc')
-rw-r--r-- | libc/misc/time/time.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/misc/time/time.c b/libc/misc/time/time.c index 914277698..c315baddc 100644 --- a/libc/misc/time/time.c +++ b/libc/misc/time/time.c @@ -2005,7 +2005,7 @@ int utimes(const char *filename, register const struct timeval *tvp) /**********************************************************************/ #ifdef L__time_t2tm -static const uint16_t vals[] = { +static const uint16_t _vals[] = { 60, 60, 24, 7 /* special */, 36524, 1461, 365, 0 }; @@ -2037,7 +2037,7 @@ struct tm *_time_t2tm(const time_t *__restrict timer, t = *timer; p = (int *) result; p[7] = 0; - vp = vals; + vp = _vals; do { if ((v = *vp) == 7) { /* Overflow checking, assuming time_t is long int... */ @@ -2182,7 +2182,7 @@ time_t _time_mktime(struct tm *timeptr, int store_on_success) /**********************************************************************/ #ifdef L__time_mktime_tzi -static const unsigned char vals[] = { +static const unsigned char __vals[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, /* non-leap */ 29, }; @@ -2221,7 +2221,7 @@ time_t _time_mktime_tzi(struct tm *timeptr, int store_on_success, --p[5]; } - s = vals; + s = __vals; d = (p[5] += 1900); /* Correct year. Now between 1900 and 2300. */ if (__isleap(d)) { s += 11; |