Path: utzoo!utgpu!water!watmath!uunet!tut.cis.ohio-state.edu!SUN.MCS.CLARKSON.EDU!gary From: gary@SUN.MCS.CLARKSON.EDU (Gary Levin) Newsgroups: gnu.utils.bug Subject: prototyping trouble Message-ID: <8810160211.AA07329@sun.mcs.clarkson.edu> Date: 16 Oct 88 02:11:11 GMT Sender: bob@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 16 certain prototype definitions appear not to be accepted. why does it complain about yyy, but not xxx? seems that there is a curious bug in the prototyping code. ------ char * yyy(); extern char * yyy(char *, char); char * xxx(); extern char * xxx(int,int); ----- Until it is fixed, I can't make use of the prototype checking, because the standard includes don't have the prototype info. (yyy is the same as index).