esp8266/etshal.h: Add few more ESP8266 vendor lib prototypes.
This commit is contained in:
parent
a4dbb4230a
commit
b6c22c42ab
|
@ -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_
|
||||
|
|
Loading…
Reference in New Issue