Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!caip!princeton!allegra!alice!ark From: ark@alice.UucP (Andrew Koenig) Newsgroups: net.lang.c Subject: Re: Another bug in C compilers Message-ID: <5882@alice.uUCp> Date: Wed, 30-Jul-86 23:22:59 EDT Article-I.D.: alice.5882 Posted: Wed Jul 30 23:22:59 1986 Date-Received: Thu, 31-Jul-86 21:55:32 EDT References: <151@danews.UUCP> Organization: Bell Labs, Murray Hill Lines: 21 > Say we have a structure declared as: > > struct ABC > { > stuff > }; > > and then follow it with: > > struct ABC; > > I don't get any error message. You are declaring an empty list of variables. You can say: struct ABC u1, u2, u3; struct ABC v1, v2; struct ABC w1; struct ABC ; They are all legitimate.