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:
Diffstat (limited to 'source/blender/blenlib/intern/vectorops.c')
-rw-r--r--source/blender/blenlib/intern/vectorops.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/vectorops.c b/source/blender/blenlib/intern/vectorops.c
index 9314e7fca3e..ee4cabac1d3 100644
--- a/source/blender/blenlib/intern/vectorops.c
+++ b/source/blender/blenlib/intern/vectorops.c
@@ -44,6 +44,10 @@
#include "MTC_vectorops.h"
#include <math.h>
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
void MTC_diff3Int(int v1[3], int v2[3], int v3[3])
{
v1[0] = v2[0] - v3[0];