mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-04-09 01:53:48 +02:00
4 lines
103 B
C
4 lines
103 B
C
#include <stdlib.h>
|
|
#define pvPortMalloc(xSize) (malloc(xSize))
|
|
#define vPortFree(pv) (free(pv))
|