[courier-users] maxlongsize may be a 64-bit portability issue

2004-09-29 Thread Alessandro Vesely
The maxlongsize.h header used to define the max size of a decimal representation of the largest long int using the size of its string representation as given in limits.h, i.e. (simplified slightly) #define MAXLONGSIZE MAXLONGSIZE1(ULONG_MAX) #define MAXLONGSIZE1(x) MAXLONGSIZE2(x) #define

Re: [courier-users] maxlongsize may be a 64-bit portability issue

2004-09-29 Thread Sam Varshavchik
Alessandro Vesely writes: The maxlongsize.h header used to define the max size of a decimal representation of the largest long int using the size of its string representation as given in limits.h, i.e. (simplified slightly) #define MAXLONGSIZE MAXLONGSIZE1(ULONG_MAX) #define MAXLONGSIZE1(x)