summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1994-03-30 22:15:20 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1994-03-30 22:15:20 +0000
commit1789fcfd99da1a3ab4b8bbcc70d5d0cf92dacae4 (patch)
tree351b9e8d2ab25176caed092458780b9a9cbaf93c /gcc
parent58a718cac65be55bbce94bd3b7262282470228eb (diff)
downloadgcc-1789fcfd99da1a3ab4b8bbcc70d5d0cf92dacae4.tar.gz
Include <stdarg.h> instead of "gstdarg.h"; similarly for varargs.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6922 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/bc-emit.c4
-rw-r--r--gcc/calls.c4
-rw-r--r--gcc/combine.c4
-rw-r--r--gcc/emit-rtl.c4
-rw-r--r--gcc/final.c4
-rw-r--r--gcc/genattrtab.c6
-rw-r--r--gcc/mips-tfile.c4
-rw-r--r--gcc/protoize.c4
-rw-r--r--gcc/toplev.c4
-rw-r--r--gcc/tree.c4
10 files changed, 21 insertions, 21 deletions
diff --git a/gcc/bc-emit.c b/gcc/bc-emit.c
index f770c1e9bcf..8b391123415 100644
--- a/gcc/bc-emit.c
+++ b/gcc/bc-emit.c
@@ -20,9 +20,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "config.h"
#ifdef __STDC__
-#include "gstdarg.h"
+#include <stdarg.h>
#else
-#include "gvarargs.h"
+#include <gvarargs.h>
#endif
#include "machmode.h"
#include "rtl.h"
diff --git a/gcc/calls.c b/gcc/calls.c
index 9cf1d9296ad..7b4589fb04d 100644
--- a/gcc/calls.c
+++ b/gcc/calls.c
@@ -23,9 +23,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "flags.h"
#include "expr.h"
#ifdef __STDC__
-#include "gstdarg.h"
+#include <stdarg.h>
#else
-#include "gvarargs.h"
+#include <varargs.h>
#endif
#include "insn-flags.h"
diff --git a/gcc/combine.c b/gcc/combine.c
index 49b3b80762f..7b7b39375bc 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -75,9 +75,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "config.h"
#ifdef __STDC__
-#include "gstdarg.h"
+#include <stdarg.h>
#else
-#include "gvarargs.h"
+#include <varargs.h>
#endif
/* Must precede rtl.h for FFS. */
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c
index a11c177208d..789567fc154 100644
--- a/gcc/emit-rtl.c
+++ b/gcc/emit-rtl.c
@@ -35,9 +35,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "config.h"
#ifdef __STDC__
-#include "gstdarg.h"
+#include <stdarg.h>
#else
-#include "gvarargs.h"
+#include <varargs.h>
#endif
#include "rtl.h"
#include "tree.h"
diff --git a/gcc/final.c b/gcc/final.c
index 11d461e3d0f..c79c2b65f38 100644
--- a/gcc/final.c
+++ b/gcc/final.c
@@ -45,9 +45,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "config.h"
#ifdef __STDC__
-#include "gstdarg.h"
+#include <stdarg.h>
#else
-#include "gvarargs.h"
+#include <varargs.h>
#endif
#include "tree.h"
#include "rtl.h"
diff --git a/gcc/genattrtab.c b/gcc/genattrtab.c
index f0f27436cee..b5821d133b3 100644
--- a/gcc/genattrtab.c
+++ b/gcc/genattrtab.c
@@ -95,11 +95,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "hconfig.h"
-/* gvarargs must always be included after *config.h. */
+/* varargs must always be included after *config.h. */
#ifdef __STDC__
-#include "gstdarg.h"
+#include <stdarg.h>
#else
-#include "gvarargs.h"
+#include <varargs.h>
#endif
#include "rtl.h"
#include "insn-config.h" /* For REGISTER_CONSTRAINTS */
diff --git a/gcc/mips-tfile.c b/gcc/mips-tfile.c
index af4c09d3dc9..2d8e416e8f4 100644
--- a/gcc/mips-tfile.c
+++ b/gcc/mips-tfile.c
@@ -599,9 +599,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifdef __STDC__
-#include "gstdarg.h"
+#include <stdarg.h>
#else
-#include "gvarargs.h"
+#include <varargs.h>
#endif
#include "config.h"
#include <stdio.h>
diff --git a/gcc/protoize.c b/gcc/protoize.c
index fca0e0831a2..c353091da5e 100644
--- a/gcc/protoize.c
+++ b/gcc/protoize.c
@@ -56,9 +56,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define _POSIX_SOURCE
#endif
-#include "gvarargs.h"
+#include <varargs.h>
/* On some systems stdio.h includes stdarg.h;
- we must bring in gvarargs.h first. */
+ we must bring in varargs.h first. */
#include <stdio.h>
#include <ctype.h>
#include <errno.h>
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 36db9d9e7d4..c3602c7c874 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -25,9 +25,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "config.h"
#ifdef __STDC__
-#include "gstdarg.h"
+#include <stdarg.h>
#else
-#include "gvarargs.h"
+#include <varargs.h>
#endif
#include <stdio.h>
#include <signal.h>
diff --git a/gcc/tree.c b/gcc/tree.c
index f95a4757452..0c6e686fee7 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -39,9 +39,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "function.h"
#include "obstack.h"
#ifdef __STDC__
-#include "gstdarg.h"
+#include <stdarg.h>
#else
-#include "gvarargs.h"
+#include <varargs.h>
#endif
#include <stdio.h>