arith.c: Add system.h; remove string.h

* 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
This commit is contained in:
Steven G. Kargl 2005-01-03 21:43:55 +00:00 committed by Richard Henderson
parent 8f1032c16a
commit d22e48951c
29 changed files with 51 additions and 82 deletions

View 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.

View 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. */

View 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"

View 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

View 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"

View 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"

View 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

View 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"

View 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"

View 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"

View 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"

View 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"

View 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"

View 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"

View 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"

View 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"

View 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"

View 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(). */

View 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. */

View 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"

View 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;

View 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"

View 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"

View 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"

View 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"

View 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"

View 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"

View 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"

View 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"