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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,ee1a8b8db84c88f X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news3.google.com!news.glorb.com!border1.nntp.dca.giganews.com!local01.nntp.dca.giganews.com!nntp.comcast.com!news.comcast.com.POSTED!not-for-mail NNTP-Posting-Date: Mon, 22 Aug 2005 18:32:00 -0500 Date: Mon, 22 Aug 2005 19:32:01 -0500 From: Larry Elmore User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.7.11) Gecko/20050820 X-Accept-Language: en-us, en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Ada exception block does NOT work? References: <4301ab29$0$6989$9b4e6d93@newsread2.arcor-online.net> <1639727.IzdcfkcRx7@linux1.krischik.com> <1227518.U5hWOOGjT8@linux1.krischik.com> In-Reply-To: <1227518.U5hWOOGjT8@linux1.krischik.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: NNTP-Posting-Host: 24.1.185.39 X-Trace: sv3-Od9TwDx58qCTzl9KGrIIcu+WFJJL2IwXP4HZzI5x/dzzXBetsF8AJasWja8CMY4aoe70Yn7r/iX3whx!ggD30mLSyxW59Blvljk7ZwxRGf+tf5nC4apt03v0vpWFmG2G1EdP0OBOp8zhXo5sawPaSqnsAw== X-Complaints-To: abuse@comcast.net X-DMCA-Complaints-To: dmca@comcast.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.32 Xref: g2news1.google.com comp.lang.ada:4254 Date: 2005-08-22T19:32:01-05:00 List-Id: Martin Krischik wrote: > Frank J. Lhota wrote: > > >>Martin Krischik wrote: >> >>>Well, the very first C did not have "unsigned int" there was just int. >>>That's why unix has a 2GB limit on files and not a 4 GB limit. (There is >>>a new set of file IO which can deal with larger files). >> >>The standard of the Vanilla, K&R C language "The C Programming Language" >>first edition, does include unsigned integer types. The old Unix file >>size limit is probably due to other reasons. I'm not sure that's necessarily the case. After all, Unix predates K&R and K&R C was certainly not the first version of C. > It's because they used "signed int" for all file operations. Personally I > consider that damm stupid - after all: have you ever seen a file with a > negative size? > > Martin