mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-29 07:24:13 +01:00
4 lines
103 B
C
4 lines
103 B
C
#include <stdlib.h>
|
|
#define pvPortMalloc(xSize) (malloc(xSize))
|
|
#define vPortFree(pv) (free(pv))
|