Merge branch 'bugfix/included-missing-limits-h-in-time-c' into 'master'

fix(newlib): included limits.h to fix warning

See merge request espressif/esp-idf!24722
This commit is contained in:
Jakob Hasse
2023-07-20 09:37:27 +08:00

View File

@@ -7,6 +7,7 @@
#include <errno.h>
#include <stdlib.h>
#include <time.h>
#include <limits.h>
#include <reent.h>
#include <unistd.h>
#include <sys/types.h>