summaryrefslogtreecommitdiff
path: root/lib/common/DebugPrintf.cpp
diff options
context:
space:
mode:
authorMartin Ebourne <martin@ebourne.me.uk>2005-12-12 23:56:44 +0000
committerMartin Ebourne <martin@ebourne.me.uk>2005-12-12 23:56:44 +0000
commit62fcbae63de111cd2191cce3af4158af819914ee (patch)
tree67b3cf0cce33cca19b61fe8e154aefb2ca783f17 /lib/common/DebugPrintf.cpp
parenta229c7a74ace6e26165bbb71bfe565be837e5830 (diff)
Merged 210:218 from chris/win32/merge/07-win32-fixes to trunk
Diffstat (limited to 'lib/common/DebugPrintf.cpp')
-rw-r--r--lib/common/DebugPrintf.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/common/DebugPrintf.cpp b/lib/common/DebugPrintf.cpp
index d07604b7..8d75f458 100644
--- a/lib/common/DebugPrintf.cpp
+++ b/lib/common/DebugPrintf.cpp
@@ -13,7 +13,12 @@
#include <stdio.h>
#include <stdarg.h>
-#include <syslog.h>
+
+#ifdef WIN32
+ #include "emu.h"
+#else
+ #include <syslog.h>
+#endif
#include "MemLeakFindOn.h"