<<On Sun, 03 Jun 2001 22:43:00 -0700, Peter Wemm <[EMAIL PROTECTED]> said:
> We could make off_t a long long on the alpha. Otherwise the formats need:
> printf("%lld", (long long) pos); /* or %qd to shut up the ANSI warning */
They always need that, until printf learns about the `j' width
specifier (at which time they all change to `printf("%jd",
(intmax_t)pos);'). off_t is another one of those types which can be
defined as absolutely any arithmetic type the implementation wishes.
-GAWollman
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message