1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-25 20:02:37 +03:00

provide implementation of _exit (#3698)

This commit is contained in:
Ivan Grokhotkov 2017-10-13 02:18:53 +08:00
parent 10edfc211e
commit 371d1412fe

View File

@ -117,6 +117,11 @@ int ICACHE_RAM_ATTR putchar(int c) {
return c;
}
void _exit(int status) {
(void) status;
abort();
}
#if 0
int ICACHE_RAM_ATTR printf(const char* format, ...) {