summaryrefslogtreecommitdiffstats
path: root/trycpp.c
blob: 0d51ebd87ca51ee2827e23b4109592a552ab7e90 (plain)
1
2
3
4
5
6
7
int main()
{
#ifdef NeXT
	printf("nextstep\n"); exit(0);
#endif
	printf("unknown\n"); exit(0);
}