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]
> -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
> 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]
"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
> -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&
"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,
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