# HG changeset patch # User michael # Date 1118153535 0 # Node ID 3dc4bfdda4b3003a8a7c970f90e7e8119eeda95b # Parent a7925aaeea1e16be36a3f8cbc006eb369ca35331 uint_fast64_t emulation by (Wolfram Gloger: wmglo, dent med uni-muenchen de) diff -r a7925aaeea1e -r 3dc4bfdda4b3 common.h --- 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