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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-01-26 14:59:31 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-01-26 14:59:31 +0400
commit371d5815a7088c74c8228783834474fb71316c62 (patch)
treefd9f5936b9f13c5742f2fd2071778f4b6e3dff9f /source/blender/avi
parentdbe432f73fd1628900d699431801209614e2e174 (diff)
Fix implicit declaration of guardedalloc functions in avi's endian.c.
Discovered by debian building system.
Diffstat (limited to 'source/blender/avi')
-rw-r--r--source/blender/avi/intern/endian.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/avi/intern/endian.c b/source/blender/avi/intern/endian.c
index 29b3047eca4..adcc7e8750a 100644
--- a/source/blender/avi/intern/endian.c
+++ b/source/blender/avi/intern/endian.c
@@ -43,6 +43,10 @@
#include "avi_intern.h"
#ifdef __BIG_ENDIAN__
+#include "MEM_guardedalloc.h"
+#endif
+
+#ifdef __BIG_ENDIAN__
static void invert (int *num)
{
int new=0,i,j;