blob: 35c86b4e89b06d9e1a7e51fc759a4259cfdad1a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* Copyright (C) 2000 Free Software Foundation, Inc. */
/* { dg-do run } */
/* { dg-options "" } */
/* Apparently older preprocessors used to fail this test. */
#include <string.h>
extern void abort (void);
#define S(str, args...) " " str "\n", ##args
int
main()
{
const char *s = S("foo");
if (strchr (s, '\n') == NULL)
abort ();
return 0;
}
|