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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-10-24 20:10:45 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-10-24 20:10:45 +0400
commitbc1b41eca5eeb0e4013371e2d3fc1b283254fa14 (patch)
treeb73c3c7fda1b02a521901f0e1088d1c5a5b98b73 /source/blender/blenkernel/intern/linestyle.c
parent3b2515ba0e71aeefb7ba43d7cede9fb05259b7f6 (diff)
* Another attempt to fix the bug partly addressed in revision 31419.
* Fix for the missing function declaration of strcpy. This caused a linker error in the Debug build with x64 VC 2008 and CMake.
Diffstat (limited to 'source/blender/blenkernel/intern/linestyle.c')
-rw-r--r--source/blender/blenkernel/intern/linestyle.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/linestyle.c b/source/blender/blenkernel/intern/linestyle.c
index ba2e150deac..4b12473eda2 100644
--- a/source/blender/blenkernel/intern/linestyle.c
+++ b/source/blender/blenkernel/intern/linestyle.c
@@ -30,6 +30,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include "MEM_guardedalloc.h"