summary refs log tree commit diff
path: root/ircd.h
diff options
context:
space:
mode:
Diffstat (limited to 'ircd.h')
-rw-r--r--ircd.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ircd.h b/ircd.h
index 1f5bba8..f85d33f 100644
--- a/ircd.h
+++ b/ircd.h
@@ -20,6 +20,7 @@
 #include <stddef.h>
 #include <time.h>
 
+#define min(A, B) ((A) < (B) ? (A) : (B))
 #include "config.h"
 
 #define BIT(x) x##_BIT, x = 1 << x##_BIT, x##_BIT_ = x##_BIT