comparison src/lib/compat.h @ 908:bc55266563cd HEAD

Use separate check for uint_fast32_t.
author Timo Sirainen <tss@iki.fi>
date Mon, 06 Jan 2003 13:15:26 +0200
parents fd8888f6f037
children e026f8e4d241
comparison
equal deleted inserted replaced
907:218e68ab290d 908:bc55266563cd
21 # if SIZEOF_LONG_LONG > 0 21 # if SIZEOF_LONG_LONG > 0
22 typedef unsigned long long uintmax_t; 22 typedef unsigned long long uintmax_t;
23 # else 23 # else
24 typedef unsigned long uintmax_t; 24 typedef unsigned long uintmax_t;
25 # endif 25 # endif
26 #endif
26 27
28 #ifndef HAVE_UINT_FAST32_T
27 # if SIZEOF_INT >= 4 29 # if SIZEOF_INT >= 4
28 typedef unsigned int uint_fast32_t; 30 typedef unsigned int uint_fast32_t;
29 # else 31 # else
30 typedef unsigned long uint_fast32_t; 32 typedef unsigned long uint_fast32_t;
31 # endif 33 # endif