X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=common.h;h=81b26728d917c0af8c1b26e9d0fa2d28cccb8a5a;hb=c204d45f6621818bf1db92bf470baa531f0a3980;hp=50410ea7e0a1bce920a2bb3ce3b968d602f929de;hpb=35c057636dd12235368cfb9644532c7561609624;p=model-checker.git diff --git a/common.h b/common.h index 50410ea..81b2672 100644 --- a/common.h +++ b/common.h @@ -20,6 +20,7 @@ void assert_hook(void); +#ifdef CONFIG_ASSERT #define ASSERT(expr) \ do { \ if (!(expr)) { \ @@ -30,6 +31,10 @@ do { \ exit(EXIT_FAILURE); \ } \ } while (0) +#else +#define ASSERT(expr) \ + do { } while (0) +#endif /* CONFIG_ASSERT */ #define error_msg(...) fprintf(stderr, "Error: " __VA_ARGS__)