summaryrefslogtreecommitdiff
path: root/Radio/HW/BladeRF/common/include/rel_assert.h
blob: 472771092c2c1c6e10c67680684948aa88906863 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _REL_ASSERT_H_
#define _REL_ASSERT_H_

#ifdef NDEBUG
#define NDEBUG_UNDEF
#endif
#undef NDEBUG
#include <assert.h>
#ifdef NDEBUG_UNDEF
#define NDEBUG
#undef NDEBUG_UNDEF
#endif

#endif /* _REL_ASSERT_H_ */