summaryrefslogtreecommitdiff
path: root/esp8266
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-10-23 16:43:07 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-10-23 16:43:07 +0300
commitb6c22c42abe23560c9452511168c158d5cc8fe4c (patch)
tree907e4dc2da9737275dca69f4f49ed0278fbc4f50 /esp8266
parenta4dbb4230a0e4b2ce5719ddc3b953516a32d8507 (diff)
esp8266/etshal.h: Add few more ESP8266 vendor lib prototypes.
Diffstat (limited to 'esp8266')
-rw-r--r--esp8266/etshal.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/esp8266/etshal.h b/esp8266/etshal.h
index e7326a43b..8584ae4d1 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_