Path: utzoo!attcan!utgpu!jarvis.csri.toronto.edu!rutgers!cs.utexas.edu!uunet!mcvax!prlb2!kulcs!blekul11!SAAAA04 From: SAAAA04@BLEKUL11.BITNET (Saaaa04) Newsgroups: comp.lang.c Subject: consistency in declaration Message-ID: <64@BLEKUL11.BITNET> Date: 13 Jun 89 14:24:56 GMT Reply-To: SAAAA04@BLEKUL11.BITNET Organization: K.U.Leuven, Leuven (Belgium) Lines: 13 Disclaimer: Author bears full responsibility for contents of this article To my surprise the following happened with the waterloo C compiler (for VM/CMS) it refuses: void foo(int , int y); but (of course) accepts: void foo(int x, int y); void foo(int , int); Do I have to be consistent ? Or is this a bug in the compiler ? Ton