From 8b803d1fd928676a656dcad04c93fcfb0c3f9dd7 Mon Sep 17 00:00:00 2001 From: faust3 Date: Sun, 2 Jan 2005 15:47:48 +0000 Subject: Mingw compile fix, hm doesn't the inttypes solution always work? git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14300 b3059339-0415-0410-9bf9-f77b7e298cf2 --- tremor/os_types.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tremor') diff --git a/tremor/os_types.h b/tremor/os_types.h index f33402efc1..8e00506408 100644 --- a/tremor/os_types.h +++ b/tremor/os_types.h @@ -41,12 +41,12 @@ typedef unsigned __int32 ogg_uint32_t; typedef __int16 ogg_int16_t; # else - /* Cygwin */ - #include <_G_config.h> - typedef _G_int64_t ogg_int64_t; - typedef _G_int32_t ogg_int32_t; - typedef _G_uint32_t ogg_uint32_t; - typedef _G_int16_t ogg_int16_t; + /* Cygwin/MinGW */ + #include + typedef int64_t ogg_int64_t; + typedef int32_t ogg_int32_t; + typedef uint32_t ogg_uint32_t; + typedef int16_t ogg_int16_t; # endif #elif defined(__MACOS__) -- cgit v1.2.3