Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorAntonio Vazquez <blendergit@gmail.com>2018-04-14 17:24:06 +0300
committerAntonioya <blendergit@gmail.com>2018-04-14 17:24:34 +0300
commit94959dba1b53640e2a36cf9b5ca46aaf49c5c74a (patch)
tree345fd633d3f4729b93888df552917e6d91fa40fc /intern
parent36152afa7623943e578600cab1cd355efae1fe0e (diff)
Fix compiler error in Windows
Diffstat (limited to 'intern')
-rw-r--r--intern/clog/clog.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/intern/clog/clog.c b/intern/clog/clog.c
index b26105be351..812915e6f95 100644
--- a/intern/clog/clog.c
+++ b/intern/clog/clog.c
@@ -33,6 +33,9 @@
# include <unistd.h>
#endif
+#if defined(_MSC_VER)
+# include <io.h>
+#endif
/* Only other dependency (could use regular malloc too). */
#include "MEM_guardedalloc.h"