mem.h 317 B

1234567891011
  1. #ifndef _SDK_OVERRIDE_MEM_H_
  2. #define _SDK_OVERRIDE_MEM_H_
  3. void *pvPortMalloc (size_t sz, const char *, unsigned);
  4. void vPortFree (void *p, const char *, unsigned);
  5. void *pvPortZalloc (size_t sz, const char *, unsigned);
  6. void *pvPortRealloc (void *p, size_t n, const char *, unsigned);
  7. #include_next "mem.h"
  8. #endif