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