Subject: Re: how is the platform determined
To: Andy <andy@softbook.com>
From: Dan Winship <danw@MIT.EDU>
List: port-macppc
Date: 12/06/1999 13:13:24
> I wonder where ( and by whom)  is _NetBSD_ defined globally ?

It's "__NetBSD__", not "_NetBSD_", and it's defined by gcc, along with
a handful of other things.

touch foo.c; gcc -E -dM foo.c

should give you a full list of things defined by gcc on your platform.

-- Dan