Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 9/3/84; site talcott.UUCP Path: utzoo!watmath!clyde!burl!ulysses!allegra!mit-eddie!godot!harvard!talcott!tmb From: tmb@talcott.UUCP (Thomas M. Breuel) Newsgroups: net.lang.c Subject: Re: lint, pointers, 0 (what else?) Message-ID: <282@talcott.UUCP> Date: Thu, 21-Feb-85 21:45:17 EST Article-I.D.: talcott.282 Posted: Thu Feb 21 21:45:17 1985 Date-Received: Tue, 26-Feb-85 05:40:40 EST References: <8412@brl-tgr.ARPA> Distribution: net Organization: Harvard University Lines: 15 > Re: int8, int32, etc. > > Do you also propose int9, int36? int24? float48? > > Let's not embed machine dependencies into the language! Some real-life programs require minimal sizes for integers and floating point numbers. 'int8' should be used as an integer type that holds at least 8 bits, not as a type that holds exactly 8 bits. If your 'C' compiler does not support 32 bit integer precision, but my differential equations need 32 bit integers, then that is a problem with your 'C' compiler, not my equations. Thomas.