+1 Wednesday, May 19, 2010, 11:31:50 AM, you wrote:
> On 05/19/2010 09:14 AM, John Plevyak wrote: >> Yes we will change INXXX_MAX etc. >> >> Unfortunately int64 is not standard. So we have a couple alternatives. >> >> 1) use nonstandard types where >> >> typedef long long int int64; >> typedef int int32; >> typedef short int16; >> typedef char int8; >> >> etc. >> >> which work on every system and which permit seamless printf >> using %lld and %d. This is the way we do it now.