comparison dmd/expression.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 0d2db7efa105
children fbb1a366cfbc
comparison
equal deleted inserted replaced
568:f75b16f1e405 571:cbd6c8073a32
42 42
43 #if IN_GCC || IN_LLVM 43 #if IN_GCC || IN_LLVM
44 #include "mem.h" 44 #include "mem.h"
45 #elif _WIN32 45 #elif _WIN32
46 #include "..\root\mem.h" 46 #include "..\root\mem.h"
47 #elif linux || __APPLE__ 47 #elif POSIX
48 #include "../root/mem.h" 48 #include "../root/mem.h"
49 #endif 49 #endif
50 50
51 //#include "port.h" 51 //#include "port.h"
52 #include "mtype.h" 52 #include "mtype.h"