On Thu, Aug 11, 2005 at 03:24:53PM -0500, Albert Chin wrote:
> On Thu, Aug 11, 2005 at 10:17:18PM +0200, Hrvoje Niksic wrote:
> > Albert Chin <[EMAIL PROTECTED]> writes:
> > 
> > > None of the following platforms have strtoll():
> > >   HP-UX 10.20, 11.00, 11.11
> > 
> > Do those platforms have 64-bit off_t, i.e. large file support?  If so,
> > do they have another strtoll-like function, such as strtoq?
> 
> All have large file support.
> 
> I don't know of any replacement to strtoll() on these platforms.

Actually, all of the above seem to have strtoimax():
  http://www.opengroup.org/onlinepubs/009695399/functions/strtoimax.html
which is defined as the following in <inttypes.h>:
  #define strtoimax(__a, __b, __c) __strtoll(__a, __b, __c)

-- 
albert chin ([EMAIL PROTECTED])

Reply via email to