mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
11 lines
144 B
C
11 lines
144 B
C
|
|
#pragma once
|
|
|
|
#include <systemlib/err.h>
|
|
#define lowsyslog warnx
|
|
#define dbg warnx
|
|
|
|
#if !defined(ASSERT)
|
|
# define ASSERT(x) assert((x))
|
|
#endif
|