* Reorg header stuff to make it more compatible with leak checkers
authorArt Cancro <ajc@citadel.org>
Wed, 24 Mar 2004 03:46:41 +0000 (03:46 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 24 Mar 2004 03:46:41 +0000 (03:46 +0000)
citadel/ChangeLog
citadel/citadel.h
citadel/ical_dezonify.c
citadel/routines2.c
citadel/screen.c
citadel/serv_calendar.c

index abaaf88b3cd8249a35bada11f0856b21843b0a8e..71fb91cdd418aa1d4b400fd6329b530ae1b8b109 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 614.97  2004/03/24 03:46:40  ajc
+ * Reorg header stuff to make it more compatible with leak checkers
+
  Revision 614.96  2004/03/24 03:25:19  ajc
  * Removed the built-in memory leak checker.  It wasn't threadsafe and
    there now exist third-party utilities that do this job better.
@@ -5594,4 +5597,3 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import
-
index 71f000266c87b0e86f6cf4425fee15b367c6a583..01aaf3924970f74d79fc214edf3128f4d19f4ee2 100644 (file)
@@ -324,5 +324,4 @@ enum {
 }
 #endif
 
-
 #endif /* CITADEL_H */
index 6055cc0d87e3c8e01efd953e0e73ff83cc29f31c..ccc46d4316960b04a6da35a35ac5523b585c010c 100644 (file)
@@ -9,6 +9,7 @@
 
 
 #include "sysdep.h"
+#include <stdlib.h>
 #include <unistd.h>
 #include <sys/types.h>
 #include <limits.h>
index b5ee17f19a6cae42f6fb801a1e782687322bf495..66ff6d090fa2f468a88caafb55a1713b54c79f27 100644 (file)
@@ -5,7 +5,6 @@
  *
  */
 
-#include "sysdep.h"
 #include <stdlib.h>
 #include <unistd.h>
 #include <sys/types.h>
@@ -31,6 +30,7 @@
 #include <pwd.h>
 #include <errno.h>
 #include <stdarg.h>
+#include "sysdep.h"
 #include "citadel.h"
 #include "citadel_ipc.h"
 #include "citadel_decls.h"
index 2acfcd2d1d93c69fd78fed258a015f397674c623..70ee4003efc521fbe35f209497fb83a7c2333468 100644 (file)
@@ -4,13 +4,14 @@
  * Handle full-screen curses stuff
  */
 
-#include "sysdep.h"
+#include <stdlib.h>
+#include <unistd.h>
 #include <stdio.h>
 #include <signal.h>
 #include <string.h>
 #include <stdarg.h>
-#include <unistd.h>
 #include <sys/types.h>
+#include "sysdep.h"
 #ifdef HAVE_VW_PRINTW
 #define _vwprintw vw_printw
 #else
index 1b0d4876a577f90c73fe8d5852554915e3f138ce..6445c2818e0887c54d7985cd3ac8128d7a51e1ea 100644 (file)
@@ -10,6 +10,7 @@
 #define PRODID "-//Citadel//NONSGML Citadel Calendar//EN"
 
 #include "sysdep.h"
+#include <stdlib.h>
 #include <unistd.h>
 #include <sys/types.h>
 #include <limits.h>