mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-18 03:52:11 +01:00
99e61dd617
Conflicts: flight/pios/common/pios_flashfs_logfs.c flight/pios/inc/pios_flashfs_logfs_priv.h flight/tests/logfs/pios.h flight/tests/logfs/pios_config.h flight/tests/logfs/unittest.cpp
4 lines
97 B
C
4 lines
97 B
C
#include <stdlib.h>
|
|
#define pvPortMalloc(xSize) (malloc(xSize))
|
|
#define vPortFree(pv) (free(pv))
|