From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,3727f1245650af64 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-11-17 15:14:20 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!newsfeed.stanford.edu!newsfeed.berkeley.edu!ucberkeley!ihnp4.ucsd.edu!usc.edu!news.usc.edu!attla2!ip.att.net!attbi_feed3!attbi.com!attbi_s04.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Pascal to ADA References: X-Newsreader: Tom's custom newsreader Message-ID: NNTP-Posting-Host: 12.234.124.41 X-Complaints-To: abuse@comcast.net X-Trace: attbi_s04 1069110859 12.234.124.41 (Mon, 17 Nov 2003 23:14:19 GMT) NNTP-Posting-Date: Mon, 17 Nov 2003 23:14:19 GMT Organization: Comcast Online Date: Mon, 17 Nov 2003 23:14:19 GMT Xref: archiver1.google.com comp.lang.ada:2595 Date: 2003-11-17T23:14:19+00:00 List-Id: > subtype BYTE is Unsigned_8; > subtype LONGINT is Integer; > subtype WORD is Unsigned_16; The middle one should of course be subtype LONGINT is Integer_32; both for consistency and because the Standard Integer is only required to hold at least 16 bits but could hold as many as the compiler writer chose.