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>2012-04-06 08:46:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-06 08:46:47 +0400
commitdf29e91a697fbc89dea9c38282f3283e2fee7cc5 (patch)
tree949a95862aecbb4fbe8e93e7428687cde42c50c8 /source/blender
parent110a1526b62aa738ac0639ba51d93e2e7611751d (diff)
code cleanup: header cleanup, remove commented workaround for mingw since its no longer needed.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenkernel/intern/deform.c2
-rw-r--r--source/blender/imbuf/intern/imageprocess.c2
-rw-r--r--source/blender/render/intern/source/sunsky.c3
3 files changed, 2 insertions, 5 deletions
diff --git a/source/blender/blenkernel/intern/deform.c b/source/blender/blenkernel/intern/deform.c
index c41f5b6f86f..1232177fa10 100644
--- a/source/blender/blenkernel/intern/deform.c
+++ b/source/blender/blenkernel/intern/deform.c
@@ -32,7 +32,7 @@
#include <string.h>
#include <math.h>
-#include "ctype.h"
+#include <ctype.h>
#include "MEM_guardedalloc.h"
diff --git a/source/blender/imbuf/intern/imageprocess.c b/source/blender/imbuf/intern/imageprocess.c
index 1976242ea4f..ba165d51e96 100644
--- a/source/blender/imbuf/intern/imageprocess.c
+++ b/source/blender/imbuf/intern/imageprocess.c
@@ -46,7 +46,7 @@
#include "IMB_imbuf_types.h"
#include "IMB_imbuf.h"
-#include "math.h"
+#include <math.h>
/* This define should be relocated to a global header some where Kent Mein
* I stole it from util.h in the plugins api */
diff --git a/source/blender/render/intern/source/sunsky.c b/source/blender/render/intern/source/sunsky.c
index 00370fb51bf..8097628e575 100644
--- a/source/blender/render/intern/source/sunsky.c
+++ b/source/blender/render/intern/source/sunsky.c
@@ -26,10 +26,7 @@
* http://www.cs.utah.edu/vissim/papers/sunsky/code/
*/
-
-
#include "sunsky.h"
-#include "math.h"
#include "BLI_math.h"
#include "BKE_global.h"