mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 17:04:58 +00:00
a9ce4dc76c
So far time_t values were interpreted as local time values. However, usually time_t values are to be interpreted as "seconds since 1 Jan 1970 in UTC". Therefore all logic handling time_t values has to be changed. - So far gmtime() called localtime() with an adjusted time_t, now localtime() calls gmtime() with an adjusted time_t. - mktime() has to do "the opposite" of localtime(), to keep it that way mktime() does now the inverse adjustment made by localtime(). - All currently present time() implementations internally call mktime() so they don't require individual adjustments. |
||
---|---|---|
.. | ||
apple2 | ||
atari | ||
atari2600 | ||
atari5200 | ||
atmos | ||
c16 | ||
c64 | ||
c128 | ||
cbm | ||
cbm510 | ||
cbm610 | ||
common | ||
conio | ||
creativision | ||
dbg | ||
em | ||
gamate | ||
geos-apple | ||
geos-cbm | ||
geos-common | ||
joystick | ||
lynx | ||
mouse | ||
nes | ||
none | ||
osic1p | ||
pce | ||
pet | ||
plus4 | ||
runtime | ||
serial | ||
sim6502 | ||
supervision | ||
telestrat | ||
tgi | ||
vic20 | ||
zlib | ||
Makefile |