mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-02 10:24:11 +01:00
6 lines
116 B
C
6 lines
116 B
C
|
#include <stdbool.h>
|
||
|
|
||
|
#define PIOS_Assert(x) if (!(x)) { while (1) ; }
|
||
|
|
||
|
#define PIOS_DEBUG_Assert(x) PIOS_Assert(x)
|