Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / cpp / paste9.c
blob35c86b4e89b06d9e1a7e51fc759a4259cfdad1a9
1 /* Copyright (C) 2000 Free Software Foundation, Inc. */
3 /* { dg-do run } */
4 /* { dg-options "" } */
6 /* Apparently older preprocessors used to fail this test. */
8 #include <string.h>
10 extern void abort (void);
12 #define S(str, args...) " " str "\n", ##args
14 int
15 main()
17 const char *s = S("foo");
19 if (strchr (s, '\n') == NULL)
20 abort ();
22 return 0;