Rationalised use of #includes to be more standards-compliant.
authordtrg <none@none>
Sat, 22 Jul 2006 21:01:15 +0000 (21:01 +0000)
committerdtrg <none@none>
Sat, 22 Jul 2006 21:01:15 +0000 (21:01 +0000)
lang/pc/comp/LLlex.c
lang/pc/comp/code.c
lang/pc/comp/cstoper.c
lang/pc/comp/input.c
lang/pc/comp/main.c
lang/pc/comp/misc.c

index a28138d..4043580 100644 (file)
@@ -1,5 +1,8 @@
 /* L E X I C A L   A N A L Y S E R   F O R   I S O - P A S C A L */
 
+#include    <stdlib.h>
+#include    <stdio.h>
+#include    <string.h>
 #include       "debug.h"
 #include       "idfsize.h"
 #include       "numsize.h"
index b19db9d..8f2efd8 100644 (file)
@@ -1,5 +1,7 @@
 /* C O D E   G E N E R A T I O N   R O U T I N E S */
 
+#include    <stdlib.h>
+#include    <string.h>
 #include       "debug.h"
 #include       <assert.h>
 #include       <em.h>
index a35a32c..fea4c7e 100644 (file)
@@ -1,5 +1,7 @@
 /* C O N S T A N T   E X P R E S S I O N   H A N D L I N G */
 
+#include    <stdlib.h>
+#include    <string.h>
 #include       "debug.h"
 #include       "target_sizes.h"
 
index 44759fc..34bb8b2 100644 (file)
@@ -1,5 +1,8 @@
 /* I N S T A N T I A T I O N   O F   I N P U T   P A C K A G E */
 
+#include    <stdlib.h>
+#include    <stdio.h>
+#include    <string.h>
 #include       "f_info.h"
 struct f_info  file_info;
 #include       "input.h"
index f121dd8..fcab091 100644 (file)
@@ -1,5 +1,7 @@
 /* M A I N   P R O G R A M */
 
+#include    <stdlib.h>
+#include    <string.h>
 #include       "debug.h"
 
 #include       <em.h>
index 901d4e8..9ded3ef 100644 (file)
@@ -1,5 +1,7 @@
 /* M I S C E L L A N E O U S    R O U T I N E S */
 
+#include    <stdlib.h>
+#include    <string.h>
 #include       <alloc.h>
 #include       <em.h>