Re: Using limits.h

2003-09-09 Thread Alexandre Julliard
David Laight <[EMAIL PROTECTED]> writes: > #define LONG_LONG_MAX (~0ull) That's ULONG_LONG_MAX, not LONG_LONG_MAX. And note that the 'll' suffix is not portable. -- Alexandre Julliard [EMAIL PROTECTED]

RE: Using limits.h

2003-09-09 Thread Robert Shearman
> -Original Message- > From: Alexandre Julliard [mailto:[EMAIL PROTECTED] > Sent: 09 September 2003 17:36 > To: Robert Shearman > Cc: [EMAIL PROTECTED] > Subject: Re: Using limits.h > > Well, long long itself is not very portable, and long long constants > def

Re: Using limits.h

2003-09-09 Thread David Laight
> Should I just use the constant that LONG_LONG_MAX equates to and put this > into the source file then? Is this portable (i.e. is long long 64bits on all > platforms) ? #define LONG_LONG_MAX (~0ull) David -- David Laight: [EMAIL PROTECTED]

Re: Using limits.h

2003-09-09 Thread Alexandre Julliard
"Robert Shearman" <[EMAIL PROTECTED]> writes: > Should I just use the constant that LONG_LONG_MAX equates to and put this > into the source file then? Is this portable (i.e. is long long 64bits on all > platforms) ? Well, long long itself is not very portable, and long long constants definitely a

RE: Using limits.h

2003-09-09 Thread Robert Shearman
> -Original Message- > From: Alexandre Julliard [mailto:[EMAIL PROTECTED] > Sent: 09 September 2003 03:13 > To: Robert Shearman > Cc: [EMAIL PROTECTED] > Subject: Re: Using limits.h > > "Robert Shearman" <[EMAIL PROTECTED]> writes: > > > I&

Re: Using limits.h

2003-09-08 Thread Alexandre Julliard
"Robert Shearman" <[EMAIL PROTECTED]> writes: > I'm trying to use the default limits.h installed on my Debian Woody system, > so that I can use either LLONG_MAX or LONG_LONG_MAX in Wine. Does anyone > know of anything special I have to define so that these are defined? I have > tried __USE_ISOC99,

Using limits.h

2003-09-07 Thread Robert Shearman
Hi All, I'm trying to use the default limits.h installed on my Debian Woody system, so that I can use either LLONG_MAX or LONG_LONG_MAX in Wine. Does anyone know of anything special I have to define so that these are defined? I have tried __USE_ISOC99, but no joy. Rob