diff --git a/systemdeps.h b/systemdeps.h index 36e2379..939e3c3 100644 --- a/systemdeps.h +++ b/systemdeps.h @@ -22,36 +22,34 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. #ifdef WIN32 -#include - -#ifdef _MSC_VER /* Microsoft compiler */ - #define __inline__ inline - #ifndef int8_t - typedef char int8_t; - typedef unsigned char uint8_t; - typedef short int16_t; - typedef unsigned short uint16_t; - typedef long int32_t; - typedef unsigned long uint32_t; - typedef LONGLONG int64_t; - typedef ULONGLONG uint64_t; - #endif - #ifndef pthread_t - typedef HANDLE pthread_t; - #endif +#include + +#ifdef _MSC_VER /* Microsoft compiler */ + #define __inline__ inline + #ifndef int8_t + typedef char int8_t; + typedef unsigned char uint8_t; + typedef short int16_t; + typedef unsigned short uint16_t; + typedef long int32_t; + typedef unsigned long uint32_t; + typedef LONGLONG int64_t; + typedef ULONGLONG uint64_t; + #endif + #ifndef pthread_t + typedef HANDLE pthread_t; + #endif #elif __MINGW32__ /* MINGW */ #include - #include - #ifndef pthread_t - typedef HANDLE pthread_t; - #endif -#else /* other compilers ...*/ - #include - #include #include -#endif - -typedef int64_t _jack_time_t; + #ifndef pthread_t + typedef HANDLE pthread_t; + #endif +#else /* other compilers ...*/ + #include + #include + #include +#endif #endif /* WIN32 */ @@ -59,7 +57,6 @@ typedef int64_t _jack_time_t; #include #include #include - typedef uint64_t _jack_time_t; #endif /* __APPLE__ || __linux__ || __sun__ || sun */ #endif