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-05-21 13:00:35 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-21 13:00:35 +0400
commit04bc89a8b69da0644f8b6fc2de171fb78e861708 (patch)
tree7bb5cbdbd6218ac1692623c173b2c1eac963ab71 /source/creator
parent252f3556e4ed7a34ca151ac7fbc074fb6f266846 (diff)
code cleanup: remove some old comments
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c39
1 files changed, 19 insertions, 20 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 1f0756b2c24..a21497b82fa 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -31,18 +31,18 @@
#if defined(__linux__) && defined(__GNUC__)
-#define _GNU_SOURCE
-#include <fenv.h>
+# define _GNU_SOURCE
+# include <fenv.h>
#endif
#if (defined(__APPLE__) && (defined(__i386__) || defined(__x86_64__)))
-#define OSX_SSE_FPE
-#include <xmmintrin.h>
+# define OSX_SSE_FPE
+# include <xmmintrin.h>
#endif
#ifdef WIN32
-#include <Windows.h>
-#include "utfconv.h"
+# include <Windows.h>
+# include "utfconv.h"
#endif
#include <stdlib.h>
@@ -105,30 +105,30 @@
#include "BLI_scanfill.h" /* for BLI_setErrorCallBack, TODO, move elsewhere */
#ifdef WITH_BUILDINFO_HEADER
-#define BUILD_DATE
+# define BUILD_DATE
#endif
/* for passing information between creator and gameengine */
#ifdef WITH_GAMEENGINE
-#include "BL_System.h"
+# include "BL_System.h"
#else /* dummy */
-#define SYS_SystemHandle int
+# define SYS_SystemHandle int
#endif
#include <signal.h>
#ifdef __FreeBSD__
-# include <sys/types.h>
-# include <floatingpoint.h>
-# include <sys/rtprio.h>
+# include <sys/types.h>
+# include <floatingpoint.h>
+# include <sys/rtprio.h>
#endif
#ifdef WITH_BINRELOC
-#include "binreloc.h"
+# include "binreloc.h"
#endif
#ifdef WITH_LIBMV
-#include "libmv-capi.h"
+# include "libmv-capi.h"
#endif
/* from buildinfo.c */
@@ -1178,15 +1178,14 @@ static void setupArguments(bContext *C, bArgs *ba, SYS_SystemHandle *syshandle)
#ifdef WITH_PYTHON_MODULE
/* allow python module to call main */
-#define main main_python_enter
+# define main main_python_enter
static void *evil_C = NULL;
-#ifdef __APPLE__
-/* environ is not available in mac shared libraries */
-#include <crt_externs.h>
+# ifdef __APPLE__
+ /* environ is not available in mac shared libraries */
+# include <crt_externs.h>
char **environ = NULL;
-#endif
-
+# endif
#endif