ref: 395a3c572792c6270427954ff55b76c6d976a479
dir: /tests/execute/0176-macro.c/
#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;
}