Bug 695240 - ogg_int64_t should be 64-bit everywhere. r=derf r=rillian

This commit is contained in:
Matthew Gregan 2011-10-20 11:18:51 +13:00
parent 6874243266
commit cf82c6b7e7

View File

@ -20,6 +20,6 @@ typedef short ogg_int16_t;
typedef unsigned short ogg_uint16_t;
typedef int ogg_int32_t;
typedef unsigned int ogg_uint32_t;
typedef long ogg_int64_t;
typedef long long ogg_int64_t;
#endif