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:
authorAntony Riakiotakis <kalast@gmail.com>2015-02-03 14:31:39 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-02-03 14:31:51 +0300
commit7345d558f9caa448dd1e63f0c2ae169345bb66df (patch)
tree3105761f3f19faead4d85337b32ec79ac72884b1 /source/blender/blenlib/intern/rand.c
parent488b342741ea96ef8e80dab7a7bcf3b9a0be5bcd (diff)
MinGW64 complains about clock, include time.h
Diffstat (limited to 'source/blender/blenlib/intern/rand.c')
-rw-r--r--source/blender/blenlib/intern/rand.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/rand.c b/source/blender/blenlib/intern/rand.c
index 7657cec8cfd..a03b236b5c6 100644
--- a/source/blender/blenlib/intern/rand.c
+++ b/source/blender/blenlib/intern/rand.c
@@ -33,6 +33,7 @@
#include <stdlib.h>
#include <string.h>
#include <math.h>
+#include <time.h>
#include "MEM_guardedalloc.h"