# HG changeset patch # User diego # Date 1161528354 0 # Node ID 3cec4506b350a2da89e54a59c973b5b08c2d85c1 # Parent 90ee83c6c312c680c0ccf1ac5ce2202e132b7303 Provide fallback definition for uint_fast64_t as well. Fixes a compilation problem on glibc 2.0 systems. taken from a patch by Mikulas Patocka, mikulas (at) artax karlin mff cuni cz diff -r 90ee83c6c312 -r 3cec4506b350 configure --- a/configure Sun Oct 22 13:43:49 2006 +0000 +++ b/configure Sun Oct 22 14:45:54 2006 +0000 @@ -2841,6 +2841,7 @@ typedef signed char int_fast8_t; typedef signed int int_fast16_t; typedef signed int int_fast32_t; + typedef signed long long int int_fast64_t; typedef unsigned char uint_fast8_t; typedef unsigned int uint_fast16_t; typedef unsigned int uint_fast32_t;