Mercurial > libavcodec.hg
changeset 2759:3dc4bfdda4b3 libavcodec
uint_fast64_t emulation by (Wolfram Gloger: wmglo, dent med uni-muenchen de)
author | michael |
---|---|
date | Tue, 07 Jun 2005 14:12:15 +0000 |
parents | a7925aaeea1e |
children | dfcfaeed1679 |
files | common.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/common.h Sun Jun 05 15:51:20 2005 +0000 +++ b/common.h Tue Jun 07 14:12:15 2005 +0000 @@ -125,13 +125,13 @@ #endif #ifdef EMULATE_FAST_INT -/* note that we don't emulate 64bit ints */ typedef signed char int_fast8_t; typedef signed int int_fast16_t; typedef signed int int_fast32_t; typedef unsigned char uint_fast8_t; typedef unsigned int uint_fast16_t; typedef unsigned int uint_fast32_t; +typedef uint64_t uint_fast64_t; #endif #ifndef INT_BIT