]> jfr.im git - irc/quakenet/newserv.git/commitdiff
Merge+fix intmax_t issues under FreeBSD.
authorChris Porter <redacted>
Sun, 24 Aug 2008 22:10:26 +0000 (23:10 +0100)
committerChris Porter <redacted>
Sun, 24 Aug 2008 22:10:26 +0000 (23:10 +0100)
chanserv/chanserv.h
chanstats/chanstats.c
localuser/localuserchannel.c
newsearch/ns-gline.c
nick/nickhandlers.c
regexgline/regexgline.c
trojanscan/trojanscan.c

index d3286961d9b41a7a0228082d4659ab1e829edd52..0af3ff25bfaf6bfd5742061c2cd9ff324ccb7a89 100644 (file)
@@ -11,6 +11,8 @@
 #include <string.h>
 #include <time.h>
 #include <stdarg.h>
+#include <stdint.h>
+
 #include "../lib/sstring.h"
 #include "../core/schedule.h"
 #include "../lib/flags.h"
index e69c01390a4e98a1af04b402c213ae75cbe1f64b..fb4a80d1382af3f45f3722b21e7a422d3801494f 100644 (file)
@@ -13,6 +13,7 @@
 
 #include <stdio.h>
 #include <string.h>
+#include <stdint.h>
 
 MODULE_VERSION("");
 
index bf52c4f3b9fac928e3ad0c272f3f0cc10428a923..86f4ed11e2b388c1fca80f5bd2e30dd11169d988 100644 (file)
@@ -12,6 +12,7 @@
 #include <stdio.h>
 #include <assert.h>
 #include <string.h>
+#include <stdint.h>
 
 MODULE_VERSION("");
 
index 6531b712427b71ca2916607237ad582a4da0dc56..2dd94092c199191c3e14007069dd1c18a48cdf99 100644 (file)
@@ -7,6 +7,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <stdint.h>
 
 #include "../control/control.h"
 #include "../irc/irc.h" /* irc_send() */
index eba13ff73ad0dd14abaa4e1b04e5a623c318a57c..149acfc2be32ea80d2f121ef0e1e4d1c669600d4 100644 (file)
@@ -13,6 +13,7 @@
 #include "../parser/parser.h"
 #include <stdlib.h>
 #include <string.h>
+#include <stdint.h>
 
 /*
  * handlenickmsg:
index 0c131f74d47cc3f8dfa59a066fcb051f58a3c5ab..d6775018dcf5fd7adc1a3bd9ba22b5f3498af0de 100644 (file)
@@ -15,6 +15,7 @@
 #include "../core/hooks.h"
 #include "../server/server.h"
 #include "../lib/strlfunc.h"
+#include <stdint.h>
 
 #define INSTANT_IDENT_GLINE  1
 #define INSTANT_HOST_GLINE   2
index 3fa8e820f76ea48c48a637d6fdc2bba6ef31a977..34468ebf7ca5f3f1c8313ecbe9ce2ea664880494 100644 (file)
@@ -15,6 +15,7 @@
 #include "../lib/strlfunc.h"
 #include "../lib/version.h"
 #include "../core/nsmalloc.h"
+#include <stdint.h>
 
 #define tmalloc(x)     nsmalloc(POOL_TROJANSCAN, x)
 #define tfree(x)       nsfree(POOL_TROJANSCAN, x)