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/threads.c')
-rw-r--r--source/blender/blenlib/intern/threads.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/blenlib/intern/threads.c b/source/blender/blenlib/intern/threads.c
index 3c87df55b2b..95a63ae5c4e 100644
--- a/source/blender/blenlib/intern/threads.c
+++ b/source/blender/blenlib/intern/threads.c
@@ -21,14 +21,14 @@
* \ingroup bli
*/
-#include <stdlib.h>
#include <errno.h>
+#include <stdlib.h>
#include <string.h>
#include "MEM_guardedalloc.h"
-#include "BLI_listbase.h"
#include "BLI_gsqueue.h"
+#include "BLI_listbase.h"
#include "BLI_system.h"
#include "BLI_task.h"
#include "BLI_threads.h"
@@ -37,14 +37,14 @@
/* for checking system threads - BLI_system_thread_count */
#ifdef WIN32
-# include <windows.h>
# include <sys/timeb.h>
+# include <windows.h>
#elif defined(__APPLE__)
-# include <sys/types.h>
# include <sys/sysctl.h>
+# include <sys/types.h>
#else
-# include <unistd.h>
# include <sys/time.h>
+# include <unistd.h>
#endif
#include "atomic_ops.h"