Skip to content

Commit

Permalink
+ fix compiler warning, improve whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed May 15, 2016
1 parent 5f0073b commit 8217b8f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Main/MainPy.cpp
Expand Up @@ -27,8 +27,8 @@
# undef _PreComp_
#endif

#ifdef FC_OS_LINUX || defined(FC_OS_BSD)
# include <unistd.h>
#if defined(FC_OS_LINUX) || defined(FC_OS_BSD)
# include <unistd.h>
#endif

#ifdef FC_OS_MACOSX
Expand All @@ -37,7 +37,7 @@
#endif

#if HAVE_CONFIG_H
# include <config.h>
# include <config.h>
#endif // HAVE_CONFIG_H

#include <stdio.h>
Expand Down Expand Up @@ -81,9 +81,9 @@ BOOL APIENTRY DllMain(HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserv
#endif

#ifdef FC_OS_WIN32
# define MainExport __declspec(dllexport)
# define MainExport __declspec(dllexport)
#else
# define MainExport
# define MainExport
#endif

extern "C"
Expand Down

0 comments on commit 8217b8f

Please sign in to comment.