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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-01-26 14:25:39 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-01-26 14:25:39 +0300
commit4efed2351710e1d726aa869bc5e7a41c0a1cac8b (patch)
treef5866ecc469a9d19b81b781158cc0572f2c68687 /source/blender/blenkernel/intern/unit.c
parent7c776bc124dc218e3e663854fb4fcf1e70a56250 (diff)
Use #include "BLI_math.h" instead of _USE_MATH_DEFINES to get M_PI defined.
Diffstat (limited to 'source/blender/blenkernel/intern/unit.c')
-rw-r--r--source/blender/blenkernel/intern/unit.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/source/blender/blenkernel/intern/unit.c b/source/blender/blenkernel/intern/unit.c
index c2994e1134c..1e8896042d6 100644
--- a/source/blender/blenkernel/intern/unit.c
+++ b/source/blender/blenkernel/intern/unit.c
@@ -20,17 +20,13 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
-#define _USE_MATH_DEFINES
-
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
-#include <math.h>
-#if defined(WIN32) && (!(defined snprintf))
-#define snprintf _snprintf
-#endif
+#include "BLI_math.h"
+#include "BLI_winstuff.h"
#define TEMP_STR_SIZE 256