1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

emulation on host: avoid closing STDIN (#8577)

- avoid closing STDIN
- less verbose during compilation
- better handling user directories
- missing str{,n}case_P declarations
This commit is contained in:
david gauchard
2022-05-20 16:54:27 +02:00
committed by GitHub
parent 8f71d2c042
commit b080c50713
4 changed files with 15 additions and 6 deletions

View File

@ -75,10 +75,12 @@ inline int vsnprintf_P(char* str, size_t size, const char* format, va_list ap)
#define memmove_P memmove
#define strncpy_P strncpy
#define strcmp_P strcmp
#define strcasecmp_P strcasecmp
#define memccpy_P memccpy
#define snprintf_P snprintf
#define sprintf_P sprintf
#define strncmp_P strncmp
#define strncasecmp_P strncasecmp
#define strcat_P strcat
#endif