esp32.rom.newlib-time.ld 898 B

1234567891011121314151617181920212223242526272829
  1. /* These are the newlib functions and the .bss/.data symbols necessary for these functions present in ESP32 ROM.
  2. They should not be used when you need to solve the Y2K38 problem.
  3. Because these functions were compiled with 32-bit width for the time_t structure.
  4. */
  5. asctime = 0x40059588;
  6. asctime_r = 0x40000ec8;
  7. ctime = 0x400595b0;
  8. ctime_r = 0x400595c4;
  9. __gettzinfo = 0x40001fcc;
  10. __get_current_time_locale = 0x40001834;
  11. gmtime = 0x40059848;
  12. gmtime_r = 0x40059868;
  13. localtime = 0x400595dc;
  14. localtime_r = 0x400595fc;
  15. mktime = 0x4005a5e8;
  16. strftime = 0x40059ab4;
  17. time = 0x40001844;
  18. __time_load_locale = 0x4000183c;
  19. tzset = 0x40001a1c;
  20. _tzset_r = 0x40001a28;
  21. __tzcalc_limits = 0x400018a0;
  22. __tz_lock = 0x40001a04;
  23. __tz_unlock = 0x40001a10;
  24. /* The .bss/.data symbols necessary for these functions */
  25. _timezone = 0x3ffae0a0;
  26. _tzname = 0x3ffae030;
  27. _daylight = 0x3ffae0a4;
  28. __month_lengths = 0x3ff9609c;