From: blub Date: Wed, 23 Dec 2009 14:45:59 +0000 (+0000) Subject: stdint.h and uint32_t instead of u_int32_t X-Git-Tag: xonotic-v0.1.0preview~999 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=504c53a3f36c93afb7aa3395910f3b107f61a593;p=xonotic%2Fdarkplaces.git stdint.h and uint32_t instead of u_int32_t git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9649 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/ft2_defs.h b/ft2_defs.h index fd15998d..7d73745c 100644 --- a/ft2_defs.h +++ b/ft2_defs.h @@ -8,8 +8,9 @@ typedef __int32 FT_Int32; typedef __uint32 FT_UInt32; #else +# include typedef int32_t FT_Int32; -typedef u_int32_t FT_UInt32; +typedef uint32_t FT_UInt32; #endif typedef int FT_Error;