From fa9d8559bdb867146c1477499bb286451cbd922e Mon Sep 17 00:00:00 2001 From: sletz Date: Fri, 5 Sep 2008 13:53:20 +0000 Subject: [PATCH] Correct headers for Windows compilation. git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2881 0c269be4-1314-0410-8aa9-9f06e86f4224 --- systemdeps.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/systemdeps.h b/systemdeps.h index 3d45382..d3da90a 100644 --- a/systemdeps.h +++ b/systemdeps.h @@ -26,11 +26,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. #ifdef __MINGW32__ #include - #include + #include #else #define __inline__ inline #define vsnprintf _vsnprintf - #define snprintf _snprintf + #define snprintf _snprintf typedef char int8_t; typedef unsigned char uint8_t; @@ -40,11 +40,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. typedef unsigned long uint32_t; typedef LONGLONG int64_t; typedef ULONGLONG uint64_t; - #endif typedef HANDLE pthread_t; - typedef int64_t _jack_time_t; + typedef int64_t _jack_time_t; #endif // WIN32 */ @@ -58,5 +57,4 @@ typedef uint64_t _jack_time_t; #endif // __APPLE__ || __linux__ */ - #endif