2 * @brief General purpose macros.
12 #define DEBUG(fmt, ...) do { printf("*** %25s(): line %-4d *** " fmt, __func__, __LINE__, ##__VA_ARGS__); } while (0)
13 #define DBG() DEBUG("\n")
14 #define DBG_ENABLED() (1)
16 #define DEBUG(fmt, ...)
18 #define DBG_ENABLED() (0)
21 void assert_hook(void);
23 #define ASSERT(expr) \
26 fprintf(stderr, "Error: assertion failed in %s at line %d\n", __FILE__, __LINE__); \
28 model_print_summary(); \
34 #define error_msg(...) fprintf(stderr, "Error: " __VA_ARGS__)
36 void print_trace(void);
37 void model_print_summary(void);
38 #endif /* __COMMON_H__ */