154359Sroberto#include <stdio.h>
254359Sroberto
354359Srobertomain()
454359Sroberto{
554359Sroberto	if (sizeof(long) == 8) {
654359Sroberto		printf("-DLONG8\n");
754359Sroberto	} else if (sizeof(long) == 4) {
854359Sroberto		printf("-DLONG4\n");
954359Sroberto	}
1054359Sroberto	exit(0);
1154359Sroberto}
12