fix timegm function issue.
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@817 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
56916d1a73
commit
b9fcbfc344
|
@ -80,11 +80,10 @@ time_t timegm(struct tm *const t) {
|
|||
|
||||
if (t->tm_sec>60) { t->tm_min += t->tm_sec/60; t->tm_sec%=60; }
|
||||
if (t->tm_min>60) { t->tm_hour += t->tm_min/60; t->tm_min%=60; }
|
||||
if (t->tm_hour>60) { t->tm_mday += t->tm_hour/60; t->tm_hour%=60; }
|
||||
if (t->tm_hour>24) { t->tm_mday += t->tm_hour/24; t->tm_hour%=24; }
|
||||
if (t->tm_mon>12) { t->tm_year += t->tm_mon/12; t->tm_mon%=12; }
|
||||
while (t->tm_mday>__spm[1+t->tm_mon]) {
|
||||
if (t->tm_mon==1 && __isleap(t->tm_year+1900)) {
|
||||
if (t->tm_mon==31+29) break;
|
||||
--t->tm_mday;
|
||||
}
|
||||
t->tm_mday-=__spm[t->tm_mon];
|
||||
|
|
Loading…
Reference in New Issue