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=-0.4 required=5.0 tests=AC_FROM_MANY_DOTS,BAYES_00 autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,ac02560f0af03a21 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-01-06 05:46:59 PST Path: archiver1.google.com!news2.google.com!newsfeed2.dallas1.level3.net!news.level3.com!crtntx1-snh1.gtei.net!news.gtei.net!newsfeed1.easynews.com!easynews.com!easynews!cyclone1.gnilink.net!spamkiller2.gnilink.net!nwrdny02.gnilink.net.POSTED!0f19ed38!not-for-mail From: "Frank J. Lhota" Newsgroups: comp.lang.ada References: <3FEC43B2.5080606@noplace.com> <1072450300.440355@master.nyc.kbcfp.com> <3FEC4E89.2070804@noplace.com> <1072458199.346049@master.nyc.kbcfp.com> <3fec7c21$0$4764$61fed72c@news.rcn.com> <4iBIb.8173$qS3.498@nwrdny03.gnilink.net> Subject: Re: GNAT parameter passing, C-style? X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Message-ID: Date: Tue, 06 Jan 2004 13:46:58 GMT NNTP-Posting-Host: 141.154.249.88 X-Complaints-To: abuse@verizon.net X-Trace: nwrdny02.gnilink.net 1073396818 141.154.249.88 (Tue, 06 Jan 2004 08:46:58 EST) NNTP-Posting-Date: Tue, 06 Jan 2004 08:46:58 EST Xref: archiver1.google.com comp.lang.ada:4142 Date: 2004-01-06T13:46:58+00:00 List-Id: "Keith Thompson" wrote in message news:lnd69ym7ga.fsf@nuthaus.mib.org... > The term "vanilla" implies that the original K&R C is the default > version of the language. It isn't. The 1990 ISO C standard is almost > universally implemented these days (though not always perfectly); it's > difficult to find a C compiler that doesn't implement prototypes, for > example. (My ancient SunOS 4.1.3 box has a K&R C compiler, but I > rarely use it, since I've also installed gcc.) I used the term "vanilla" because of its common usage in the C community. I did not mean to imply that K&R C is the most common version of C. Certainly ANSI C is available for every current platform that I am aware of, and the vast majority of the C code written in the last few years has been written in ANSI C. > Nitpick: it's "deprecates". My apologies. This is the type of mistake that my spell checker will not protect me from! > The latest ISO C standard, C99, requires full declarations for > functions, but it's not widely implemented yet; so far, it's not > catching on as quickly as C90 did. (C90, the 1990 ISO C standard, is > essentially identical to C89, the 1989 ANSI C standard.) One of the reasons that C99 is not catching on as quickly as C89 / C90 is that so much of the C market has transitioned to C++, where again full declarations are required. So all of this is quickly becoming a moot point.