diff options
Diffstat (limited to 'esp8266')
-rw-r--r-- | esp8266/etshal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/esp8266/etshal.h b/esp8266/etshal.h index e7326a43ba..8584ae4d1d 100644 --- a/esp8266/etshal.h +++ b/esp8266/etshal.h @@ -32,6 +32,8 @@ void MD5Final(unsigned char digest[16], MD5_CTX *context); // These prototypes are for recent SDKs with "malloc tracking" void *pvPortMalloc(unsigned sz, const char *fname, int line); +void *pvPortZalloc(unsigned sz, const char *fname, int line); +void *pvPortRealloc(void *p, unsigned sz, const char *fname, int line); void vPortFree(void *p, const char *fname, int line); #endif // _INCLUDED_ETSHAL_H_ |