summary refs log tree commit diff
path: root/ircd.h
diff options
context:
space:
mode:
authorNakidai <nakidai@disroot.org>2026-02-05 12:53:36 +0300
committerNakidai <nakidai@disroot.org>2026-02-05 12:53:36 +0300
commitc638c90e5545111fd1217c777724397759dc06d7 (patch)
tree9917543314f7f74ea1bca2004bc4f05711d4ea78 /ircd.h
parenteba9ea345af1f259bf27936f3d0941ab2a2f5bfb (diff)
downloadlibreircd-c638c90e5545111fd1217c777724397759dc06d7.tar.gz
libreircd-c638c90e5545111fd1217c777724397759dc06d7.zip
Add NAMES
So not it can show who's on the channel, yay. Though, no showing ops
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