#include <stdio.h>

#define def(x, type) type x, *p##x = &x;

int main(void) {
	def(a, int);
	*pa = 10;
	printf("%d\n", a);
	return 0;
}
