shithub: scc

ref: fe2b29d13bac3ab3c16490b859f452201c6b4c77
dir: /tests/cc/execute/0069-funclikemacro.c/

View raw version
#define A 3
#define FOO(X,Y,Z) X + Y + Z
#define SEMI ;

int
main()
{
	if(FOO(1, 2, A) != 6)
		return 1 SEMI
	return FOO(0,0,0);
}