comparison dmd/opover.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 330f999ade44
comparison
equal deleted inserted replaced
568:f75b16f1e405 571:cbd6c8073a32
18 #define integer_t dmd_integer_t 18 #define integer_t dmd_integer_t
19 #endif 19 #endif
20 20
21 #if IN_GCC || IN_LLVM 21 #if IN_GCC || IN_LLVM
22 #include "mem.h" 22 #include "mem.h"
23 #elif linux || __APPLE__ 23 #elif POSIX
24 #include "../root/mem.h" 24 #include "../root/mem.h"
25 #elif _WIN32 25 #elif _WIN32
26 #include "..\root\mem.h" 26 #include "..\root\mem.h"
27 #endif 27 #endif
28 28