aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00137.c
blob: 2f0f0545c81855089d79b9470eec2cb64010b5aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#define x(y) #y

int
main(void)
{
	char *p;
	p = x(hello)  " is better than bye";

	return (*p == 'h') ? 0 : 1;
}