aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/util.h b/src/util.h
index 3357c6e..5b8d22f 100644
--- a/src/util.h
+++ b/src/util.h
@@ -22,10 +22,11 @@ static const double NaN = 0.0f/0.0f;
#define info(s) info_m(s,__FILE__,__LINE__);
#define logm(s) log_m(s,__FILE__,__LINE__);
#else
-#define err(s,f,...);
-#define warn(s);
-#define info(s);
-#define logm(s);
+#define printf(...){};
+#define err(s,f,...){};
+#define warn(s){};
+#define info(s){};
+#define logm(s){};
#endif
double binomial(int n, int k);