2c793cef06
Allows resolving the Y2K38 problem. Closes: IDF-350 Closes: https://github.com/espressif/esp-idf/issues/584
21 lines
602 B
Text
21 lines
602 B
Text
/* These are the newlib functions present in ESP32 ROM.
|
|
They should not be used when you need to solve the Y2K38 problem.
|
|
Because these functions were compiled with 32-bit width for the time_t structure.
|
|
*/
|
|
|
|
asctime = 0x40059588;
|
|
asctime_r = 0x40000ec8;
|
|
ctime = 0x400595b0;
|
|
ctime_r = 0x400595c4;
|
|
__gettzinfo = 0x40001fcc;
|
|
__get_current_time_locale = 0x40001834;
|
|
gmtime = 0x40059848;
|
|
gmtime_r = 0x40059868;
|
|
localtime = 0x400595dc;
|
|
localtime_r = 0x400595fc;
|
|
mktime = 0x4005a5e8;
|
|
strftime = 0x40059ab4;
|
|
time = 0x40001844;
|
|
__time_load_locale = 0x4000183c;
|
|
tzset = 0x40001a1c;
|
|
_tzset_r = 0x40001a28;
|