Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Path: utzoo!watmath!clyde!floyd!vax135!cornell!uw-beaver!tektronix!zehntel!hplabs!sri-unix!chris%umcp-cs.csnet@csnet-relay.arpa
From: chris%umcp-cs.csnet@csnet-relay.arpa
Newsgroups: net.unix
Subject: Re:  PCC compiler bug and odd solution
Message-ID: <17127@sri-arpa.UUCP>
Date: Thu, 1-Mar-84 21:43:51 EST
Article-I.D.: sri-arpa.17127
Posted: Thu Mar  1 21:43:51 1984
Date-Received: Sun, 4-Mar-84 09:07:44 EST
Lines: 14

From:      Chris Torek 

Sounds like you wrote

	struct xxx { ... }
	foo () {

which creates a ***STRUCTURE VALUED*** function.  Don't forget that ';'!
Try

	struct xxx { ... };
	foo () { 

instead.