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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-11-25 21:20:46 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-11-25 21:20:46 +0300
commit2582e3a90019d5d594be13c178b1054b7f3c71af (patch)
tree228658ebe6b4141f0168c6f9d5f3877e0fd61a0a /source/blender/blenlib
parent55d2a56d6020a5d286d5d44f7d2d8a8d0bc9bf58 (diff)
Sculpt: fix windows compile issues, pointed out by JMS, thanks!
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/string.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/string.c b/source/blender/blenlib/intern/string.c
index 2ecdda2de35..3dc12174bd7 100644
--- a/source/blender/blenlib/intern/string.c
+++ b/source/blender/blenlib/intern/string.c
@@ -42,6 +42,9 @@
#include "BLI_dynstr.h"
#include "BLI_string.h"
+#ifdef WIN32
+#include "BLI_winstuff.h"
+#endif
char *BLI_strdupn(const char *str, int len) {
char *n= MEM_mallocN(len+1, "strdup");