Author: Kev <klmitch@mit.edu>
authorKevin L. Mitchell <klmitch@mit.edu>
Fri, 17 Aug 2001 19:10:00 +0000 (19:10 +0000)
committerKevin L. Mitchell <klmitch@mit.edu>
Fri, 17 Aug 2001 19:10:00 +0000 (19:10 +0000)
Log message:

#include <stdlib.h> to define exit()

git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@551 c9e4aea6-c8fd-4c43-8297-357d70d61c8c

ChangeLog
ircd/ircd_events.c
ircd/ircd_log.c
ircd/numnicks.c

index 2cc80f8064025a87f5817e88c055536c205055ab..28f642e1b1b4d2636a4980f5dfdac8a43e2aea6f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2001-08-17  Kevin L Mitchell  <klmitch@mit.edu>
 
+       * ircd/numnicks.c: include stdlib.h for exit()
+
+       * ircd/ircd_log.c: include stdlib.h for exit()
+
+       * ircd/ircd_events.c: include stdlib.h for exit()
+
        * ircd/s_stats.c: remove description of /stats v, since it's gone
 
        * ircd/m_wallops.c (mo_wallops): add "*" to the beginning of
index 6befeaec096ff863bdbc1cdf810c62c80afcdf31..e59cd051f4cfd7590086cfde3aa76d5f4779554a 100644 (file)
@@ -30,6 +30,7 @@
 
 #include <assert.h>
 #include <signal.h>
+#include <stdlib.h>
 #include <unistd.h>
 
 #define SIGS_PER_SOCK  10      /* number of signals to process per socket
index 96f0fd3ea5356c0d1a15ef40730cf9304942bbd2..89ad01fc8934cfc5de28575357f8379d7b7ed11f 100644 (file)
@@ -41,6 +41,7 @@
 #include <fcntl.h>
 #include <stdarg.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <string.h>
 #include <sys/stat.h>
 #include <sys/types.h>
index b0474a028aacf5be0a59be5cfdec52f8c7a214ff..cbba746a1d7b1d8b3c24497628a1074194fecad2 100644 (file)
@@ -33,6 +33,7 @@
 
 #include <assert.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <string.h>