Path: utzoo!telly!ddsw1!mcdchg!rutgers!mailrus!tut.cis.ohio-state.edu!ARIZONA.EDU!gmt From: gmt@ARIZONA.EDU ("Gregg Townsend") Newsgroups: gnu.gcc.bug Subject: prob w/ incomplete struct pointer in prototype (gcc 1.30) Message-ID: <8811160039.AA16023@megaron.arizona.edu> Date: 16 Nov 88 00:39:48 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 17 /* "gcc -c xx.c" gets: * * xx.c: In function alcfhead: * xx.c:16: argument `blink' doesn't match function prototype * * This is gcc 1.30 on either a Vax 8650 (Mt Xinu 4.3 BSD) or Sun 3/140 * (SunOS 4.0). */ void alcfhead (struct fentry *blink); struct fentry { int x; }; void alcfhead(blink) struct fentry *blink; { }