aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/cpp')
-rw-r--r--gcc/testsuite/gcc.dg/cpp/lexstrng.c2
-rw-r--r--gcc/testsuite/gcc.dg/cpp/paste2.c3
2 files changed, 1 insertions, 4 deletions
diff --git a/gcc/testsuite/gcc.dg/cpp/lexstrng.c b/gcc/testsuite/gcc.dg/cpp/lexstrng.c
index 4fbb3b5..b035330 100644
--- a/gcc/testsuite/gcc.dg/cpp/lexstrng.c
+++ b/gcc/testsuite/gcc.dg/cpp/lexstrng.c
@@ -5,8 +5,6 @@
/* Test lexing of strings and character constants. */
-#include <string.h>
-
#ifndef __WCHAR_TYPE__
#define __WCHAR_TYPE__ int
#endif
diff --git a/gcc/testsuite/gcc.dg/cpp/paste2.c b/gcc/testsuite/gcc.dg/cpp/paste2.c
index 1ce13a5..adb70b5 100644
--- a/gcc/testsuite/gcc.dg/cpp/paste2.c
+++ b/gcc/testsuite/gcc.dg/cpp/paste2.c
@@ -6,13 +6,12 @@
/* Test ## behaviour and corner cases thoroughly. The macro expander
failed many of these during development. */
-#include <string.h>
-
#ifndef __WCHAR_TYPE__
#define __WCHAR_TYPE__ int
#endif
typedef __WCHAR_TYPE__ wchar_t;
+extern int strcmp (const char *, const char *);
extern int puts (const char *);
extern void abort (void);
#define err(str) do { puts(str); abort(); } while (0)