shithub: scc

ref: 994751d39485e086ef623f202fb1b84729fd5d19
dir: /tests/cc/execute/0147-intern_cpp.c/

View raw version
#define x(y)  (y)

int
main(void)
{
	int y;
	char *p;

	p = __FILE__;
	y = __LINE__;
	p = __DATE__;
	y = __STDC__;
	p = __TIME__;
	y = __STDC_HOSTED__;
	y = __SCC__;
	y = x(1);

	return 0;
}