This is the mail archive of the
egcs@egcs.cygnus.com
mailing list for the EGCS project. See the EGCS
home page for more information.
[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index] [Subject Index] [Author Index] [Thread Index]
Re: `quad' printf format specifier ?
- To: Alex Buell <alex.buell@tahallah.demon.co.uk>
- Subject: Re: `quad' printf format specifier ?
- From: Jeffrey A Law <law@hurl.cygnus.com>
- Date: Mon, 08 Feb 1999 13:20:44 -0700
- cc: "Guillermo A. Loyola" <gmo@epigram.com>, egcs@egcs.cygnus.com
- Delivered-To: listarch-egcs@egcs.cygnus.com
- Delivered-To: mailing list egcs@egcs.cygnus.com
- In-reply-to: Your message of Mon, 08 Feb 1999 14:47:38 MST. <Pine.LNX.4.05.9902081436140.307-100000@lo-pc3035a.hitc.com>
- Mailing-List: contact egcs-help@egcs.cygnus.com; run by ezmlm
- Reply-To: law@cygnus.com
- Sender: owner-egcs@egcs.cygnus.com
In message <Pine.LNX.4.05.9902081436140.307-100000@lo-pc3035a.hitc.com>you wr
ite:
> OK, so an int is always the "native" machine's natural bit-length? ie. on
> IA32, it's 32 bits, and on some 64bit architectures it's 64 bits?
No, you can't assume that. You can assume:
sizeof (long long) >= sizeof (long) >= sizeof (int) >= sizeof (short) >= sizeof (char)
jeff