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-Thread: 103376,85c4b961f840b5ab X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!news.glorb.com!Spring.edu.tw!news.nctu.edu.tw!feeder.seed.net.tw!attdv1!ip.att.net!newsfeed1.global.lmco.com!svlnews.lmms.lmco.com!not-for-mail From: "Xenos" Newsgroups: comp.lang.ada Subject: Re: Zero length Objects Date: Fri, 2 Jul 2004 17:06:28 -0400 Organization: Hades Message-ID: References: <2oUEc.2$S77.1@nwrdny03.gnilink.net> <2kimpdF2orakU1@uni-berlin.de> <1088697459.558708@master.nyc.kbcfp.com> NNTP-Posting-Host: 158.187.64.144 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1409 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Xref: g2news1.google.com comp.lang.ada:2056 Date: 2004-07-02T17:06:28-04:00 List-Id: >"Vinzent 'Gadget' Hoefler" wrote in message >news:d4dbe092us62t56f99fcoucn4bjukc6v4a@jellix.jlfencey.com... >Adrian Knoth wrote: >>Vinzent 'Gadget' Hoefler wrote: >> >>> One : String (1 .. 100_000); >>> Two : String (1 .. 100_000); >>> for Two'Address use One'Address; >> >>As I've mentioned earlier in this thread we're not talking about C ;) > >Do *that* in portable C without using pointers and I will shut up. ;) > >Vinzent. union X { char a[100000]; char b[100000]; } x; DrX