Changed all '#if linux || __APPLE__' to '#if POSIX' so we can support other platforms too, thanx for the suggestion anders.

This commit is contained in:
Tomas Lindquist Olsen
2008-09-02 23:10:12 +02:00
parent d6e7a65b69
commit f3b3db7fa9
10 changed files with 36 additions and 32 deletions

View File

@@ -44,7 +44,7 @@ int isnan(double);
#include "mem.h"
#elif _WIN32
#include "..\root\mem.h"
#elif linux || __APPLE__
#elif POSIX
#include "../root/mem.h"
#endif