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:
authorCampbell Barton <ideasman42@gmail.com>2021-01-20 12:43:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-20 12:43:58 +0300
commit91bf24dd00781ce83851edbbc72f617bb26f827f (patch)
treea236d184ccd87f625997b1c2075b03af1eefe02e /source/blender/blenlib
parentf0ab9034d99f12c1087ef44fa00b669182128e09 (diff)
Cleanup: clang-format
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/BLI_mmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/BLI_mmap.c b/source/blender/blenlib/intern/BLI_mmap.c
index f0b13183c68..210312456d9 100644
--- a/source/blender/blenlib/intern/BLI_mmap.c
+++ b/source/blender/blenlib/intern/BLI_mmap.c
@@ -29,8 +29,8 @@
#include <string.h>
#ifndef WIN32
-# include <stdlib.h>
# include <signal.h>
+# include <stdlib.h>
# include <sys/mman.h> // for mmap
# include <unistd.h> // for read close
#else