diff options
Diffstat (limited to 'source/Globals.h')
-rw-r--r-- | source/Globals.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source/Globals.h b/source/Globals.h index d4484e4c9..02559647d 100644 --- a/source/Globals.h +++ b/source/Globals.h @@ -28,6 +28,7 @@ #include <semaphore.h>
#include <errno.h>
#include <fcntl.h>
+ #include <memory.h>
#endif
@@ -42,6 +43,13 @@ +// Compatibility:
+#define ASSERT assert
+
+
+
+
+
// STL stuff:
#include <vector>
#include <list>
@@ -54,6 +62,7 @@ // Common headers:
+#include "StringUtils.h"
#include "cSleep.h"
#include "cCriticalSection.h"
#include "cSemaphore.h"
|