Code: Select all
$ touch /tmp/foo.c && cpp -E -dM /tmp/foo.c | grep linux
#define __linux 1
#define __linux__ 1
#define __gnu_linux__ 1
#define linux 1
Code: Select all
$ touch /tmp/foo.c && cpp -E -dM /tmp/foo.c | grep APPLE
#define __APPLE_CC__ 5370
#define __APPLE__ 1
Cheers,
zImage