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 'intern/clog/clog.c')
-rw-r--r--intern/clog/clog.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/intern/clog/clog.c b/intern/clog/clog.c
index 9074e0f85e1..921ee17a672 100644
--- a/intern/clog/clog.c
+++ b/intern/clog/clog.c
@@ -18,23 +18,23 @@
* \ingroup clog
*/
+#include <assert.h>
#include <stdarg.h>
+#include <stdint.h>
#include <stdlib.h>
#include <string.h>
-#include <stdint.h>
-#include <assert.h>
/* Disable for small single threaded programs
* to avoid having to link with pthreads. */
#ifdef WITH_CLOG_PTHREADS
-# include <pthread.h>
# include "atomic_ops.h"
+# include <pthread.h>
#endif
/* For 'isatty' to check for color. */
#if defined(__unix__) || defined(__APPLE__) || defined(__HAIKU__)
-# include <unistd.h>
# include <sys/time.h>
+# include <unistd.h>
#endif
#if defined(_MSC_VER)