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-Thread: 103376,3ea3f3c185df1b1c X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news3.google.com!newshub.sdsu.edu!elnk-nf2-pas!elnk-pas-nf1!newsfeed.earthlink.net!cyclone.socal.rr.com!cyclone2.kc.rr.com!news2.kc.rr.com!twister.socal.rr.com.POSTED!53ab2750!not-for-mail Newsgroups: comp.lang.ada Subject: Re: Will the World ever see something beyond GNAT 3.15p? References: <41E5BEBD.A3C7BBD8@raytheon.com> <4244894.mjszBdT2aV@linux1.krischik.com> <2qGdnRHihtRhI3rcRVn-uA@comcast.com> <1308622.IPB2vGgG6q@linux1.krischik.com> From: Keith Thompson Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (gnu/linux) Cancel-Lock: sha1:f230Mo0Vzws1bpx/xx6X4UrgmFQ= MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 14 Jan 2005 23:10:54 GMT NNTP-Posting-Host: 66.91.240.168 X-Complaints-To: abuse@rr.com X-Trace: twister.socal.rr.com 1105744254 66.91.240.168 (Fri, 14 Jan 2005 15:10:54 PST) NNTP-Posting-Date: Fri, 14 Jan 2005 15:10:54 PST Organization: RoadRunner - West Xref: g2news1.google.com comp.lang.ada:7788 Date: 2005-01-14T23:10:54+00:00 List-Id: Martin Krischik writes: > Jeff C wrote: > > >> for(;P("\n"),R-;P("|"))for(e=C;e-;P("_"+(*u++/8)%2))P("| "+(*u/4)%2); > > ;-) > > Of corse it will only link when there is a function P() somewhere. P() does > not nessesarly need take a char* as parameter or have any return value at > all - but it must exist somewhere. It won't compile at all; it has two syntax errors. "R-" should be "R--", and "e-" should be "e--". It still won't compile without appropriate declarations for R, e, C, and U -- and in C99 it's illegal without a function declarations for P. -- Keith Thompson (The_Other_Keith) kst-u@mib.org San Diego Supercomputer Center <*> We must do something. This is something. Therefore, we must do this.