shithub: scc

ref: 6b1309ac40e3f1842f42b5fbd995b40dbf8e3932
dir: /tests/cc/execute/0176-macro.c/

View raw version
#ifdef __STDC__
#define __(proto) proto
#else
#define __(proto) ()
#endif

extern int func __((int, int));

int
main()
{
	int (*fun)(int,int) = func;

	return (*func)(2, 1);
}

int
func(int a, int b)
{
	return a - b - 1;
}