changeset 20360:416a1afcfe95

Consistency fix: use "signed long long" for int_fast64_t instead of "signed long long int", since uint_fast64_t uses "unsigned long long"
author reimar
date Sun, 22 Oct 2006 15:13:50 +0000
parents 4795f0a7fb62
children 87c1bd5096de
files configure
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Sun Oct 22 14:51:17 2006 +0000
+++ b/configure	Sun Oct 22 15:13:50 2006 +0000
@@ -2841,7 +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 signed long long int_fast64_t;
     typedef unsigned char uint_fast8_t;
     typedef unsigned int  uint_fast16_t;
     typedef unsigned int  uint_fast32_t;