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