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
committerCampbell Barton <ideasman42@gmail.com>2018-04-15 10:55:42 +0300
commit87a9b6ac06367622c10fde69c1fbbc6a67dbe5c7 (patch)
tree768048514deca7127d9414f3d2edde6d4569cc85 /intern
parent2666e77c226f17d7dd4ef73ac405f49b6ea3d06e (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"