From c638c90e5545111fd1217c777724397759dc06d7 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Thu, 5 Feb 2026 12:53:36 +0300 Subject: Add NAMES So not it can show who's on the channel, yay. Though, no showing ops --- ircd.h | 1 + 1 file changed, 1 insertion(+) (limited to 'ircd.h') diff --git a/ircd.h b/ircd.h index 1f5bba8..f85d33f 100644 --- a/ircd.h +++ b/ircd.h @@ -20,6 +20,7 @@ #include #include +#define min(A, B) ((A) < (B) ? (A) : (B)) #include "config.h" #define BIT(x) x##_BIT, x = 1 << x##_BIT, x##_BIT_ = x##_BIT -- cgit 1.4.1