> Can you clarify why you used int instead of int32_t? Considering that - the comment around it said ``Find an integer type that is at least 32 bits'' - int may be less than 32 bits wide (C99 5.2.4.2.1) - int32_t is not guaranteed to exist (C99 7.18.1.1p3) The most appropriate type would be int_least32_t, no? (required to exist (C99 7.18.1.2p3))
(That said, I'm not sure if there's a port for which this could be a problem, so if not, feel free to disregard) -- Timo Buhrmester
