【完善】格式化 minilibc/time.c
This commit is contained in:
parent
9f300de9cc
commit
e809ced607
|
@ -11,20 +11,20 @@
|
|||
|
||||
/* days per month -- nonleap! */
|
||||
const short __spm[13] =
|
||||
{ 0,
|
||||
{ 0,
|
||||
(31),
|
||||
(31+28),
|
||||
(31+28+31),
|
||||
(31+28+31+30),
|
||||
(31+28+31+30+31),
|
||||
(31+28+31+30+31+30),
|
||||
(31+28+31+30+31+30+31),
|
||||
(31+28+31+30+31+30+31+31),
|
||||
(31+28+31+30+31+30+31+31+30),
|
||||
(31+28+31+30+31+30+31+31+30+31),
|
||||
(31+28+31+30+31+30+31+31+30+31+30),
|
||||
(31+28+31+30+31+30+31+31+30+31+30+31),
|
||||
};
|
||||
(31 + 28),
|
||||
(31 + 28 + 31),
|
||||
(31 + 28 + 31 + 30),
|
||||
(31 + 28 + 31 + 30 + 31),
|
||||
(31 + 28 + 31 + 30 + 31 + 30),
|
||||
(31 + 28 + 31 + 30 + 31 + 30 + 31),
|
||||
(31 + 28 + 31 + 30 + 31 + 30 + 31 + 31),
|
||||
(31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30),
|
||||
(31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31),
|
||||
(31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30),
|
||||
(31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30 + 31),
|
||||
};
|
||||
static long int timezone;
|
||||
static const char days[] = "Sun Mon Tue Wed Thu Fri Sat ";
|
||||
static const char months[] = "Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec ";
|
||||
|
@ -134,7 +134,7 @@ time_t mktime(struct tm * const t)
|
|||
}
|
||||
|
||||
if (t->tm_year < 70)
|
||||
return (time_t) -1;
|
||||
return (time_t) - 1;
|
||||
|
||||
/* Days since 1970 is 365 * number of years + number of leap years since 1970 */
|
||||
day = years * 365 + (years + 1) / 4;
|
||||
|
|
Loading…
Reference in New Issue