comparison dmd/hdrgen.c @ 571:cbd6c8073a32

Changed all '#if linux || __APPLE__' to '#if POSIX' so we can support other platforms too, thanx for the suggestion anders.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 02 Sep 2008 23:10:12 +0200
parents f79bbd1d0b27
children b30fe7e1dbb9
comparison
equal deleted inserted replaced
568:f75b16f1e405 571:cbd6c8073a32
27 #if IN_GCC || IN_LLVM 27 #if IN_GCC || IN_LLVM
28 #include "mem.h" 28 #include "mem.h"
29 #else 29 #else
30 #if _WIN32 30 #if _WIN32
31 #include "..\root\mem.h" 31 #include "..\root\mem.h"
32 #elif linux || __APPLE__ 32 #elif POSIX
33 #include "../root/mem.h" 33 #include "../root/mem.h"
34 #else 34 #else
35 #error "fix this" 35 #error "fix this"
36 #endif 36 #endif
37 #endif 37 #endif