shithub: scc

ref: 74d520e8c85d8725aff11b423f0ba00fd3dd727d
dir: /tests/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)(1, 2);
}

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