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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-02-03 15:24:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-02-03 15:24:31 +0300
commit1667e68797a599c204fefa318df42d434ccb2188 (patch)
tree96b93a70d0c73fe92dc09f2ca9e0f8f10340c30b /source/blender
parentba8b9ae307010ee5e8e43c6afc4c9d0571c2bf73 (diff)
Revert "Keep mingw specific includes ifdef'd"
This reverts commit ba8b9ae307010ee5e8e43c6afc4c9d0571c2bf73. Turns out this is needed on other systems, just happened to be indirect included on them.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenlib/intern/rand.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/source/blender/blenlib/intern/rand.c b/source/blender/blenlib/intern/rand.c
index ea1349156ba..a03b236b5c6 100644
--- a/source/blender/blenlib/intern/rand.c
+++ b/source/blender/blenlib/intern/rand.c
@@ -33,10 +33,7 @@
#include <stdlib.h>
#include <string.h>
#include <math.h>
-
-#ifdef __MINGW32__
-# include <time.h>
-#endif
+#include <time.h>
#include "MEM_guardedalloc.h"