From b5b830668560a7733ddd3609ba96e845aa63546b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 16 Jun 2012 20:20:07 +0000 Subject: code cleanup: includes, also correct some py example typos --- source/blender/blenlib/intern/fnmatch.c | 2 +- source/blender/blenlib/intern/threads.c | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'source/blender/blenlib') diff --git a/source/blender/blenlib/intern/fnmatch.c b/source/blender/blenlib/intern/fnmatch.c index e29f31897c0..60e898a3f19 100644 --- a/source/blender/blenlib/intern/fnmatch.c +++ b/source/blender/blenlib/intern/fnmatch.c @@ -25,8 +25,8 @@ #endif #include -#include #include +#include "BLI_fnmatch.h" /* Comment out all this code if we are using the GNU C Library, and are not diff --git a/source/blender/blenlib/intern/threads.c b/source/blender/blenlib/intern/threads.c index dc4c15a82fc..201417b65d6 100644 --- a/source/blender/blenlib/intern/threads.c +++ b/source/blender/blenlib/intern/threads.c @@ -44,14 +44,14 @@ /* for checking system threads - BLI_system_thread_count */ #ifdef WIN32 -#include "windows.h" -#include +# include +# include #elif defined(__APPLE__) -#include -#include +# include +# include #else -#include -#include +# include +# include #endif #if defined(__APPLE__) && (PARALLEL == 1) && (__GNUC__ == 4) && (__GNUC_MINOR__ == 2) -- cgit v1.2.3