Rationalised use of #includes to be more standards-compliant.
authordtrg <none@none>
Wed, 19 Jul 2006 10:28:43 +0000 (10:28 +0000)
committerdtrg <none@none>
Wed, 19 Jul 2006 10:28:43 +0000 (10:28 +0000)
13 files changed:
lang/basic/src/bem.h
lang/cem/cemcom.ansi/code.c
lang/cem/cemcom.ansi/idf.c
lang/cem/cemcom.ansi/init.c
lang/cem/cemcom.ansi/input.c
lang/cem/cemcom.ansi/options.c
lang/cem/cemcom.ansi/replace.c
lang/cem/cemcom/arith.c
lang/cem/cemcom/code.c
lang/cem/cemcom/options.c
lang/cem/cemcom/replace.c
lang/cem/cemcom/stack.c
lang/cem/cpp.ansi/input.c

index 05b3491..deb6eb4 100644 (file)
@@ -4,6 +4,7 @@
  */
 
 #include <ctype.h>
+#include <string.h>
 #include <signal.h>
 #include <system.h>
 #include <print.h>
index 1f969bf..6289529 100644 (file)
@@ -5,6 +5,8 @@
 /* $Id$ */
 /*     C O D E - G E N E R A T I N G   R O U T I N E S         */
 
+#include       <stdlib.h>
+#include       <string.h>
 #include       "lint.h"
 #include       "debug.h"
 #include       "dbsymtab.h"
index 59e225c..56db5c2 100644 (file)
@@ -5,6 +5,8 @@
 /* $Id$ */
 /*     IDENTIFIER  FIDDLING & SYMBOL TABLE HANDLING    */
 
+#include       <stdlib.h>
+#include       <string.h>
 #include       "lint.h"
 #include       <em_reg.h>
 #include       "debug.h"
index bc97dae..d59b1de 100644 (file)
@@ -5,6 +5,8 @@
 /* $Id$ */
 /* PREPROCESSOR: INITIALIZATION ROUTINES */
 
+#include       <stdlib.h>
+#include       <string.h>
 #include       "nopp.h"
 
 #ifndef NOPP
index 904fb33..05193d2 100644 (file)
@@ -4,6 +4,9 @@
  */
 /* $Id$ */
 
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
 #include "inputtype.h"
 #include "file_info.h"
 #include "input.h"
index c7298d5..379c7c6 100644 (file)
@@ -5,6 +5,8 @@
 /* $Id$ */
 /*     U S E R   O P T I O N - H A N D L I N G         */
 
+#include       <stdlib.h>
+#include       <string.h>
 #include       "lint.h"
 #include       "botch_free.h"
 #include       <alloc.h>
index b5571db..856c38d 100644 (file)
@@ -4,6 +4,9 @@
  */
 /* $Id$ */
 /*  M A C R O   R E P L A C E M E N T */
+
+#include       <stdlib.h>
+#include       <string.h>
 #include       "nopp.h"
 
 #ifndef NOPP
index 8a337f5..ce3ab4e 100644 (file)
@@ -11,6 +11,9 @@
        semantics of C is a mess.
 */
 
+#include       <stdlib.h>
+#include       <stdio.h>
+#include       <string.h>
 #include       <alloc.h>
 #include       "lint.h"
 #include       "nofloat.h"
index d82b8da..0107a44 100644 (file)
@@ -5,6 +5,9 @@
 /* $Id$ */
 /*     C O D E - G E N E R A T I N G   R O U T I N E S         */
 
+#include       <stdlib.h>
+#include       <stdio.h>
+#include       <string.h>
 #include       "lint.h"
 #include       "dbsymtab.h"
 #ifndef        LINT
index 849253a..62e3dc9 100644 (file)
@@ -5,6 +5,9 @@
 /* $Id$ */
 /*     U S E R   O P T I O N - H A N D L I N G         */
 
+#include       <stdlib.h>
+#include       <stdio.h>
+#include       <string.h>
 #include       "lint.h"
 #include       "botch_free.h"
 #include       <alloc.h>
index 96b4a6d..15f9c1d 100644 (file)
@@ -5,6 +5,9 @@
 /* $Id$ */
 /* PREPROCESSOR: MACRO-TEXT REPLACEMENT ROUTINES */
 
+#include       <stdlib.h>
+#include       <stdio.h>
+#include       <string.h>
 #include       "nopp.h"
 
 #ifndef NOPP
index f5a5ee9..073683d 100644 (file)
@@ -5,6 +5,9 @@
 /* $Id$ */
 /*     S T A C K / U N S T A C K  R O U T I N E S      */
 
+#include       <stdlib.h>
+#include       <stdio.h>
+#include       <string.h>
 #include       "lint.h"
 #include       "nofloat.h"
 #include       <system.h>
index 2001bfa..960d5e5 100644 (file)
@@ -4,6 +4,9 @@
  */
 /* $Id$ */
 
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
 #include "file_info.h"
 #include "input.h"