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: fdb77,5f529c91be2ac930 X-Google-Attributes: gidfdb77,public X-Google-Thread: 1108a1,59ec73856b699922 X-Google-Attributes: gid1108a1,public X-Google-Thread: 103376,583275b6950bf4e6 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-05-08 08:21:37 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!small1.nntp.aus1.giganews.com!nntp.giganews.com!cyclone1.gnilink.net!spamkiller2.gnilink.net!nwrdny03.gnilink.net.POSTED!53ab2750!not-for-mail From: "Frank J. Lhota" Newsgroups: comp.lang.java.advocacy,comp.object,comp.lang.ada References: <9fa75d42.0304300412.3c9f8157@posting.google.com> <98BC68183770643E.43B22CFE5F4D5EFD.5566989BE627964B@lp.airnews.net> <9fa75d42.0305010645.7a5572ed@posting.google.com> <3EB1C603.7788E194@adaworks.com> <83jno-vjm.ln1@lexi2.athghost7038suus.net> Subject: Re: the Ada mandate, and why it collapsed and died (was): 64 bit addressing and OOP X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Message-ID: <5Cuua.10$tc5.3@nwrdny03.gnilink.net> Date: Thu, 08 May 2003 15:21:37 GMT NNTP-Posting-Host: 141.154.249.17 X-Complaints-To: abuse@verizon.net X-Trace: nwrdny03.gnilink.net 1052407297 141.154.249.17 (Thu, 08 May 2003 11:21:37 EDT) NNTP-Posting-Date: Thu, 08 May 2003 11:21:37 EDT Xref: archiver1.google.com comp.lang.java.advocacy:63309 comp.object:62989 comp.lang.ada:37068 Date: 2003-05-08T15:21:37+00:00 List-Id: "The Ghost In The Machine" wrote in message news:83jno-vjm.ln1@lexi2.athghost7038suus.net... > No problem, the C compiler would have caught it. :-) Not necessarily! Most C compilers will compile the following code without warning, although actually calling this version of funcname is bound to cause trouble. /**************************************/ #include void funcname (FILE file) { fprintf( &file, "Hello, World!\n" ); }