]> jfr.im git - irc/quakenet/newserv.git/blobdiff - authext/authext.c
Update README.
[irc/quakenet/newserv.git] / authext / authext.c
index 11b1a58787176b8e2631da6408938edced5be56a..b48c84e9da506f51f0a4470a6d55160b047ded76 100644 (file)
@@ -7,12 +7,16 @@
 #include "../core/hooks.h"
 #include "../lib/strlfunc.h"
 #include "../lib/version.h"
+#include "../lib/ccassert.h"
 
 #include <string.h>
 #include <stdio.h>
 
 MODULE_VERSION("")
 
+/* checking to see that u_int64_t == unsigned long long for strtoull */
+CCASSERT(sizeof(unsigned long long) == sizeof(u_int64_t))
+
 #define authnamehash(x)   ((x)%AUTHNAMEHASHSIZE)
 #define authnamehashbyname(x) (crc32i(x)%AUTHNAMEHASHSIZE)