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:
authorJoerg Mueller <nexyon@gmail.com>2010-08-16 22:50:59 +0400
committerJoerg Mueller <nexyon@gmail.com>2010-08-16 22:50:59 +0400
commit9bb21deec624c7005f475ca7d2fa7c2e3ebf1184 (patch)
tree1609f36f4939c5a5599537f3bdf4f2701442633a /intern/audaspace
parent01d61095cda2c3c91c9c672a5dd9ee00166af31b (diff)
Audaspace: Further fixes.
Diffstat (limited to 'intern/audaspace')
-rw-r--r--intern/audaspace/intern/AUD_C-API.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/intern/audaspace/intern/AUD_C-API.cpp b/intern/audaspace/intern/AUD_C-API.cpp
index 3393ef75472..304c5657364 100644
--- a/intern/audaspace/intern/AUD_C-API.cpp
+++ b/intern/audaspace/intern/AUD_C-API.cpp
@@ -23,6 +23,11 @@
* ***** END LGPL LICENSE BLOCK *****
*/
+// needed for INT64_C
+#ifndef __STDC_CONSTANT_MACROS
+#define __STDC_CONSTANT_MACROS
+#endif
+
#ifndef DISABLE_PYTHON
#include "AUD_PyAPI.h"
@@ -30,11 +35,6 @@ Device* g_device;
bool g_pyinitialized = false;
#endif
-// needed for INT64_C
-#ifndef __STDC_CONSTANT_MACROS
-#define __STDC_CONSTANT_MACROS
-#endif
-
#include <cstdlib>
#include <cstring>
#include <cmath>