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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-04-15 11:11:45 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-04-15 11:11:45 +0400
commitd9211b1e7b8503c67ad7898c09b338902e794e9d (patch)
treeba0562a7b01e300dbcf726445b37afe1d7616957 /source/blender/blenlib/BLI_sys_types.h
parent4f1a5192c24595798942b6ce8d704031e9fda8de (diff)
Fix compilation (size_t not defined) by including stddef.h in BLI_sys_types.h
Diffstat (limited to 'source/blender/blenlib/BLI_sys_types.h')
-rw-r--r--source/blender/blenlib/BLI_sys_types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_sys_types.h b/source/blender/blenlib/BLI_sys_types.h
index fcdbf16871a..b0a8adeef22 100644
--- a/source/blender/blenlib/BLI_sys_types.h
+++ b/source/blender/blenlib/BLI_sys_types.h
@@ -197,6 +197,8 @@ typedef uint64_t u_int64_t;
#endif /* ifdef platform for types */
+#include <stddef.h> /* size_t define */
+
#ifdef HAVE_STDBOOL_H
# include <stdbool.h>
#elif !defined(__bool_true_false_are_defined) && !defined(__BOOL_DEFINED)