mem.h 251 B

123456789101112
  1. #ifndef __MEM_H__
  2. #define __MEM_H__
  3. //void *pvPortMalloc( size_t xWantedSize );
  4. //void vPortFree( void *pv );
  5. //void *pvPortZalloc(size_t size);
  6. #define os_malloc pvPortMalloc
  7. #define os_free vPortFree
  8. #define os_zalloc pvPortZalloc
  9. #endif