summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp/macro1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/cpp/macro1.c')
-rw-r--r--gcc/testsuite/gcc.dg/cpp/macro1.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/cpp/macro1.c b/gcc/testsuite/gcc.dg/cpp/macro1.c
index e7235f577c2..a2b1a38e295 100644
--- a/gcc/testsuite/gcc.dg/cpp/macro1.c
+++ b/gcc/testsuite/gcc.dg/cpp/macro1.c
@@ -4,7 +4,11 @@
/* Tests various macro abuse is correctly expanded. */
+#if DEBUG
extern int puts (const char *);
+#else
+#define puts(X)
+#endif
extern void abort (void);
extern int strcmp(const char *s1, const char *s2);