Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!burl!codas!akguc!akgua!akgub!galbp!gbm From: gbm@galbp.UUCP (Gary McKenney) Newsgroups: net.lang.c Subject: Re: enum function bug? Message-ID: <671@galbp.UUCP> Date: Thu, 25-Sep-86 09:17:23 EDT Article-I.D.: galbp.671 Posted: Thu Sep 25 09:17:23 1986 Date-Received: Tue, 30-Sep-86 07:37:59 EDT References: <103@hcx1.UUCP> Organization: Lanier Business Products, Inc., Atlanta, Georgia Lines: 29 > On a somewhat related matter, I noticed the following: > > AT&T 5.2.2 source seems to accept the following, but Berkeley 4.2 & 4.3beta > give a warning of inconsistent usage. > > struct st { int c ; } ; > int func (b); > int b; > { > } > main() > { > struct st s; > func (&s); > } > > If 's' were a character array, however, AT&T would also complain. > > Dave Ray -- uucp: {ucf-cs|allegra}!novavax!hrshcx!hcx1!daver Why don't you try: func (&s.c); I think this will be excepted to both and it still points to the beginning of the structure. gbm