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/BLI_sys_types.h')
-rw-r--r--source/blender/blenlib/BLI_sys_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_sys_types.h b/source/blender/blenlib/BLI_sys_types.h
index 354d27385a2..b9e799aa2a9 100644
--- a/source/blender/blenlib/BLI_sys_types.h
+++ b/source/blender/blenlib/BLI_sys_types.h
@@ -64,13 +64,13 @@ typedef uint64_t u_int64_t;
#else
/* FreeBSD, Solaris */
-# include <sys/types.h>
# include <stdint.h>
+# include <sys/types.h>
#endif /* ifdef platform for types */
-#include <stddef.h> /* size_t define */
#include <stdbool.h>
+#include <stddef.h> /* size_t define */
#ifndef __cplusplus
# if defined(__APPLE__)