Added confitional definition

This commit is contained in:
David Sidrane 2015-05-19 08:45:24 -10:00 committed by Lorenz Meier
parent 9d055ef95b
commit bcb3529490

View File

@ -4,4 +4,7 @@
#include <systemlib/err.h>
#define lowsyslog warnx
#define dbg warnx
#define ASSERT(x) assert((x))
#if !defined(ASSERT)
# define ASSERT(x) assert((x))
#endif