Merge "vpx_integer.h: fix incorrect type emulation"

This commit is contained in:
John Koleszar 2011-12-13 12:55:46 -08:00 committed by Gerrit Code Review
commit c4aeff94b1

View File

@ -29,16 +29,8 @@ typedef signed __int64 int64_t;
typedef unsigned __int64 uint64_t;
#endif
#ifdef HAVE_ARMV6
typedef unsigned int int_fast16_t;
#else
typedef signed short int_fast16_t;
#endif
typedef signed char int_fast8_t;
typedef unsigned char uint_fast8_t;
#ifndef _UINTPTR_T_DEFINED
typedef unsigned int uintptr_t;
typedef size_t uintptr_t;
#endif
#else