aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/utils.h b/src/utils.h
index 2cb06c3..ca77a53 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -4,9 +4,6 @@
#include <stdint.h>
#include <stddef.h>
-#define MIN(a,b) (((a)<(b))?(a):(b))
-#define MAX(a,b) (((a)>(b))?(a):(b))
-
#define NUMOF(l) (sizeof(l) / sizeof(*l))
#define linear_to_dB(x) (log10(x) * 20)