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