]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
arith.c: Add system.h; remove string.h
authorSteven G. Kargl <kargls@comcast.net>
Mon, 3 Jan 2005 21:43:55 +0000 (21:43 +0000)
committerRichard Henderson <rth@gcc.gnu.org>
Mon, 3 Jan 2005 21:43:55 +0000 (13:43 -0800)
        * arith.c: Add system.h; remove string.h
        * decl.c: Ditto
        * matchexp.c: Ditto
        * parse.c: Ditto
        * resolve.c: Ditto
        * st.c: Ditto
        * check.c: Remove stdlib.h and stdarg.h
        * error.c: Remove stdlib.h, stdarg.h, stdio.h, string.h
        * expr.c: Add system.h; remove stdarg.h, stdio.h, and string.h
        * f95-lang.c: Add system.h; remove stdio.h
        * interface.c: Add system.h; remove stdlib.h and string.h
        * intrinsic.c: Remove stdarg.h, stdio.h, and string.h
        * io.c: Remove string.h
        * simplify.c: Ditto
        * match.c: Remove stdarg.h and string.h
        * misc.c: Update copyright; add system.h; remove stdlib.h,
        string.h, and sys/stat.h
        * module.c: Add system.h; remove string.h, stdio.h, errno.h,
        unistd.h, and time.h
        * option.c: Remove string.h and stdlib.h
        * primary.c: Ditto
        * scanner.c: Update copyright; add system.h; remove stdlib.h,
        stdio.h, string.h, and strings.h
        * symbol.c: Add system.h; remove stdlib.h, stdio.h, and string.h
        * trans-array.c: Remove stdio.h and gmp.h
        * trans-const.c: Ditto
        * trans-expr.c: Ditto
        * trans-io.c: Ditto
        * trans-stmt.c: Ditto
        * trans.c: Ditto
        * trans-intrinsic.c: Remove stdio.h and string.h

From-SVN: r92866

29 files changed:
gcc/fortran/ChangeLog
gcc/fortran/array.c
gcc/fortran/check.c
gcc/fortran/decl.c
gcc/fortran/error.c
gcc/fortran/expr.c
gcc/fortran/f95-lang.c
gcc/fortran/interface.c
gcc/fortran/intrinsic.c
gcc/fortran/io.c
gcc/fortran/match.c
gcc/fortran/matchexp.c
gcc/fortran/misc.c
gcc/fortran/module.c
gcc/fortran/options.c
gcc/fortran/parse.c
gcc/fortran/primary.c
gcc/fortran/resolve.c
gcc/fortran/scanner.c
gcc/fortran/simplify.c
gcc/fortran/st.c
gcc/fortran/symbol.c
gcc/fortran/trans-array.c
gcc/fortran/trans-const.c
gcc/fortran/trans-expr.c
gcc/fortran/trans-intrinsic.c
gcc/fortran/trans-io.c
gcc/fortran/trans-stmt.c
gcc/fortran/trans.c

index ae3b9cd7853b143f46d7406c6a63020dfc187fe4..7c585a6e3d7f2f8cfd686683d5175f19402affb2 100644 (file)
@@ -1,3 +1,37 @@
+2005-01-03  Steven G. Kargl  <kargls@comcast.net>
+
+       * arith.c: Add system.h; remove string.h
+       * decl.c: Ditto
+       * matchexp.c: Ditto
+       * parse.c: Ditto
+       * resolve.c: Ditto
+       * st.c: Ditto
+       * check.c: Remove stdlib.h and stdarg.h
+       * error.c: Remove stdlib.h, stdarg.h, stdio.h, string.h
+       * expr.c: Add system.h; remove stdarg.h, stdio.h, and string.h
+       * f95-lang.c: Add system.h; remove stdio.h
+       * interface.c: Add system.h; remove stdlib.h and string.h
+       * intrinsic.c: Remove stdarg.h, stdio.h, and string.h
+       * io.c: Remove string.h
+       * simplify.c: Ditto
+       * match.c: Remove stdarg.h and string.h
+       * misc.c: Update copyright; add system.h; remove stdlib.h,
+       string.h, and sys/stat.h
+       * module.c: Add system.h; remove string.h, stdio.h, errno.h,
+       unistd.h, and time.h
+       * option.c: Remove string.h and stdlib.h
+       * primary.c: Ditto
+       * scanner.c: Update copyright; add system.h; remove stdlib.h,
+       stdio.h, string.h, and strings.h
+       * symbol.c: Add system.h; remove stdlib.h, stdio.h, and string.h
+       * trans-array.c: Remove stdio.h and gmp.h
+       * trans-const.c: Ditto
+       * trans-expr.c: Ditto
+       * trans-io.c: Ditto
+       * trans-stmt.c: Ditto
+       * trans.c: Ditto
+       * trans-intrinsic.c: Remove stdio.h and string.h
+
 2004-12-29  Steven G. Kargl  <kargls@comcast.net>
 
        * gfortran.h (gfc_case): fix typo in comment.
index 936681304038a49d1dc4869557c639e0888997ba..d99b525618ae0b89cf0070cb8fe3e7faab46bb5f 100644 (file)
@@ -20,11 +20,10 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 02111-1307, USA.  */
 
 #include "config.h"
+#include "system.h"
 #include "gfortran.h"
 #include "match.h"
 
-#include <string.h>
-
 /* This parameter is the size of the largest array constructor that we
    will expand to an array constructor without iterators.
    Constructors larger than this will remain in the iterator form.  */
index 3d67b1c4d1a5107d9f01cbeda8f6570527081bd3..815ee2f6743a0079b2cc9d74c115d3551aa5fe5a 100644 (file)
@@ -26,10 +26,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
    has been sorted into the right order and has NULL arguments in the
    correct places for missing optional arguments.  */
 
-
-#include <stdlib.h>
-#include <stdarg.h>
-
 #include "config.h"
 #include "system.h"
 #include "flags.h"
index 97b5e1f15e830a8db110fb71933a0299efd40fc6..d29668d2b2c9d3f41c0f7c3bd92cadbae6efc6b1 100644 (file)
@@ -21,10 +21,10 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 
 
 #include "config.h"
+#include "system.h"
 #include "gfortran.h"
 #include "match.h"
 #include "parse.h"
-#include <string.h>
 
 
 /* This flag is set if a an old-style length selector is matched
index 084f0ef474e9180664c79e3136b61dcef220d9d1..7f0b57ca02f45a58897f8a09d9fced7f081cfb19 100644 (file)
@@ -28,12 +28,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 
 #include "config.h"
 #include "system.h"
-
-#include <string.h>
-#include <stdarg.h>
-#include <stdio.h>
-#include <stdlib.h>
-
 #include "flags.h"
 #include "gfortran.h"
 
index 5037c8c68348aa3c2ddeb82fe23908f6ddd28ef6..e1ab0999939a70ca69d2c5876b434889c3964920 100644 (file)
@@ -21,10 +21,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 02111-1307, USA.  */
 
 #include "config.h"
-#include <stdarg.h>
-#include <stdio.h>
-#include <string.h>
-
+#include "system.h"
 #include "gfortran.h"
 #include "arith.h"
 #include "match.h"
index f32b786b1610226a435bcdfce27fb3ec50350108..23eca0779fe1d5d7884468e4a792c3faee2aeda9 100644 (file)
@@ -25,6 +25,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 /* declare required prototypes: */
 
 #include "config.h"
+#include "system.h"
 #include "ansidecl.h"
 #include "system.h"
 #include "coretypes.h"
@@ -49,8 +50,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "trans-types.h"
 #include "trans-const.h"
 
-#include <stdio.h>
-
 /* Language-dependent contents of an identifier.  */
 
 struct lang_identifier
index 87b243775cfa51bb6beee08aec4028e85410d37b..7c7f7510b95f34f4e35334f698b28ed2de95d5dc 100644 (file)
@@ -65,9 +65,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
    the program unit name.  */
 
 #include "config.h"
-#include <string.h>
-#include <stdlib.h>
-
+#include "system.h"
 #include "gfortran.h"
 #include "match.h"
 
index 2aa3f294ac8507af988392b32e45676ec1fc5a73..f8548719be9ec774eb3fd2e67279769313fe460f 100644 (file)
@@ -25,11 +25,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "config.h"
 #include "system.h"
 #include "flags.h"
-
-#include <stdio.h>
-#include <stdarg.h>
-#include <string.h>
-
 #include "gfortran.h"
 #include "intrinsic.h"
 
index 1ee7031a79f06aa71cbfd932bbce431cd7d47ea9..022621cac6efde8d4ef826ed2da02e5c392681fc 100644 (file)
@@ -23,9 +23,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "config.h"
 #include "system.h"
 #include "flags.h"
-
-#include <string.h>
-
 #include "gfortran.h"
 #include "match.h"
 #include "parse.h"
index 825120f5ca98b377701ff903192e70fce735105c..3b3617820e139375f3e3b72f2579b22df6659ebe 100644 (file)
@@ -24,10 +24,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "config.h"
 #include "system.h"
 #include "flags.h"
-
-#include <stdarg.h>
-#include <string.h>
-
 #include "gfortran.h"
 #include "match.h"
 #include "parse.h"
index 1035e8888c33c9849ca01f7febea07e9b7632f92..1a26420be4e095661b96dfff83f4cd6968626b5d 100644 (file)
@@ -21,7 +21,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 
 
 #include "config.h"
-#include <string.h>
+#include "system.h"
 #include "gfortran.h"
 #include "arith.h"
 #include "match.h"
index 3f7058391ebd114ed4667d8bc4e0ff17d418d715..45117f5b5c8b8cf157a83a7b1f7490516953bbae 100644 (file)
@@ -1,5 +1,5 @@
 /* Miscellaneous stuff that doesn't fit anywhere else.
-   Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
    Contributed by Andy Vaught
 
 This file is part of GCC.
@@ -21,10 +21,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 
 
 #include "config.h"
-#include <stdlib.h>
-#include <string.h>
-#include <sys/stat.h>
-
+#include "system.h"
 #include "gfortran.h"
 
 
index d4bee5bf78fbb48b78a4e64fd1f1a4a76b03e26c..4e449b12e6e4898dd8e568ba248bc03a1139a0bd 100644 (file)
@@ -64,12 +64,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
    particular order.  */
 
 #include "config.h"
-#include <string.h>
-#include <stdio.h>
-#include <errno.h>
-#include <unistd.h>
-#include <time.h>
-
+#include "system.h"
 #include "gfortran.h"
 #include "arith.h"
 #include "match.h"
index bdffbf3c2ebbbb2421b1598690029fab27e264ef..700cebbdf6b2db8621a45612e446a18ed28db518 100644 (file)
@@ -20,8 +20,6 @@ along with GCC; see the file COPYING.  If not, write to the Free
 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 02111-1307, USA.  */
 
-#include <string.h>
-#include <stdlib.h>
 
 #include "config.h"
 #include "system.h"
index 11bd8efbff4e6b7e0ba8eed90114f799645fea13..d9c74f9ed4a82628535c95f7b214cd49fe6c33d5 100644 (file)
@@ -22,9 +22,8 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 
 
 #include "config.h"
-#include <string.h>
+#include "system.h"
 #include <setjmp.h>
-
 #include "gfortran.h"
 #include "match.h"
 #include "parse.h"
index 6484ec60cc28d3212230536560b27a96a2ea0eff..32c6c36340cd39b6849e30d8a86990af81cdbaf6 100644 (file)
@@ -23,9 +23,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "config.h"
 #include "system.h"
 #include "flags.h"
-
-#include <string.h>
-#include <stdlib.h>
 #include "gfortran.h"
 #include "arith.h"
 #include "match.h"
index 3d72f7dfa79e57876520415256ef02c00629f2b1..8bc638fcee5b83eed17766ff9c26aac9d9bdf00c 100644 (file)
@@ -19,10 +19,12 @@ along with GCC; see the file COPYING.  If not, write to the Free
 Software Foundation, 59 Temple Place - Suite 330,Boston, MA
 02111-1307, USA.  */
 
+
 #include "config.h"
+#include "system.h"
 #include "gfortran.h"
 #include "arith.h"  /* For gfc_compare_expr().  */
-#include <string.h>
+
 
 /* Stack to push the current if we descend into a block during
    resolution.  See resolve_branch() and resolve_code().  */
index 281ae88ba171920c1ceb9a0e9ef95430a8bcbf3e..400cb4cb367e495622396b5d307eacde1a858e3f 100644 (file)
@@ -1,5 +1,5 @@
 /* Character scanner.
-   Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
    Contributed by Andy Vaught
 
 This file is part of GCC.
@@ -42,11 +42,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
    new characters and do a lot of jumping backwards.  */
 
 #include "config.h"
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <strings.h>
-
+#include "system.h"
 #include "gfortran.h"
 
 /* Structure for holding module and include file search path.  */
index 5004b83acc9485a3ee10b21f2cb814177d937a77..bd46e959cd460a1fe74735bcc4d16db1d525e92b 100644 (file)
@@ -23,9 +23,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "config.h"
 #include "system.h"
 #include "flags.h"
-
-#include <string.h>
-
 #include "gfortran.h"
 #include "arith.h"
 #include "intrinsic.h"
index f3e3671cac844d74e600484d8de06f987ec88254..b6515376e38444e3b7af4e009a665e310f51e78f 100644 (file)
@@ -25,8 +25,8 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
    target.  */
 
 #include "config.h"
+#include "system.h"
 #include "gfortran.h"
-#include <string.h>
 
 gfc_code new_st;
 
index d1443bde077dc17eb00ce6e4142a9d82b7c0bf88..ec7a9b8c7aa981ac8977a27f0ae084194d34e56c 100644 (file)
@@ -22,10 +22,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 
 
 #include "config.h"
-#include <string.h>
-#include <stdio.h>
-#include <stdlib.h>
-
+#include "system.h"
 #include "gfortran.h"
 #include "parse.h"
 
index 330c34b204895632b8b22727a5f6ccdb72cb36cb..4e249f21e24ad00e9b6240daaf1d8bea9e2ea19e 100644 (file)
@@ -81,12 +81,10 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "coretypes.h"
 #include "tree.h"
 #include "tree-gimple.h"
-#include <stdio.h>
 #include "ggc.h"
 #include "toplev.h"
 #include "real.h"
 #include "flags.h"
-#include <gmp.h>
 #include "gfortran.h"
 #include "trans.h"
 #include "trans-stmt.h"
index c0572da043a76438579c95a088d4ab4fe1b9afcd..f949b7a071b50e65cef3cf1eb1a8c6315cdeebc7 100644 (file)
@@ -25,11 +25,9 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "system.h"
 #include "coretypes.h"
 #include "tree.h"
-#include <stdio.h>
 #include "ggc.h"
 #include "toplev.h"
 #include "real.h"
-#include <gmp.h>
 #include <math.h>
 #include "gfortran.h"
 #include "trans.h"
index d132ccb2b42e586ea51b1126d104be783af05eb8..d1e9fb31768124c29ee1e9a5e5b0b8168b705ccc 100644 (file)
@@ -27,13 +27,11 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "coretypes.h"
 #include "tree.h"
 #include "convert.h"
-#include <stdio.h>
 #include "ggc.h"
 #include "toplev.h"
 #include "real.h"
 #include "tree-gimple.h"
 #include "flags.h"
-#include <gmp.h>
 #include "gfortran.h"
 #include "trans.h"
 #include "trans-const.h"
index 455dfb8c360db212569bb0136fe4258d10dfdcfd..7dda82a53ee07601d6e885e2434c54ff19c0832a 100644 (file)
@@ -26,8 +26,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "system.h"
 #include "coretypes.h"
 #include "tree.h"
-#include <stdio.h>
-#include <string.h>
 #include "ggc.h"
 #include "toplev.h"
 #include "real.h"
index 194856f1a30df2516f8e6ed07b69062aae05c58c..7c7a737353c3f02525147f3a8316a987a2721716 100644 (file)
@@ -25,11 +25,9 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "coretypes.h"
 #include "tree.h"
 #include "tree-gimple.h"
-#include <stdio.h>
 #include "ggc.h"
 #include "toplev.h"
 #include "real.h"
-#include <gmp.h>
 #include "gfortran.h"
 #include "trans.h"
 #include "trans-stmt.h"
index e0c9f75e8c5e39873b11c10bf50b9424ca98fafa..66b913ef25f9ea83d018c97f8a2e4c6bbd77e49b 100644 (file)
@@ -26,11 +26,9 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "coretypes.h"
 #include "tree.h"
 #include "tree-gimple.h"
-#include <stdio.h>
 #include "ggc.h"
 #include "toplev.h"
 #include "real.h"
-#include <gmp.h>
 #include "gfortran.h"
 #include "trans.h"
 #include "trans-stmt.h"
index 35105437f71244e26a307c7de2d1322ee20c2b1c..d0fb93d63e58b88cf4d6e461862dec621192841e 100644 (file)
@@ -24,12 +24,10 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "coretypes.h"
 #include "tree.h"
 #include "tree-gimple.h"
-#include <stdio.h>
 #include "ggc.h"
 #include "toplev.h"
 #include "defaults.h"
 #include "real.h"
-#include <gmp.h>
 #include "gfortran.h"
 #include "trans.h"
 #include "trans-stmt.h"