comparison dmd/doc.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
19 #if IN_GCC || IN_LLVM 19 #if IN_GCC || IN_LLVM
20 #include "mem.h" 20 #include "mem.h"
21 #else 21 #else
22 #if _WIN32 22 #if _WIN32
23 #include "..\root\mem.h" 23 #include "..\root\mem.h"
24 #elif linux || __APPLE__ 24 #elif POSIX
25 #include "../root/mem.h" 25 #include "../root/mem.h"
26 #else 26 #else
27 #error "fix this" 27 #error "fix this"
28 #endif 28 #endif
29 #endif 29 #endif