Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 6/24/83; site utah-cs.UUCP Path: utzoo!watmath!clyde!burl!ulysses!mhuxl!houxm!vax135!cornell!uw-beaver!tektronix!hplabs!utah-cs!donn From: donn@utah-cs.UUCP (Donn Seeley) Newsgroups: net.lang.c,net.bugs.4bsd Subject: Re: Yet more PCC bugs (4.2BSD) Message-ID: <3015@utah-cs.UUCP> Date: Wed, 29-Aug-84 19:45:54 EDT Article-I.D.: utah-cs.3015 Posted: Wed Aug 29 19:45:54 1984 Date-Received: Sat, 1-Sep-84 10:21:37 EDT References: <8180@umcp-cs.UUCP> Organization: University of Utah CS Dept Lines: 28 Even more fun... The following program shows how to declare arguments in a unique way: ------------------------------------------------------------------------ double x( a ), y( b ), z( c ); double d() double a, b, c; { return a + b + c; } ------------------------------------------------------------------------ A similarly obscene program produces the plaintive warning 'bad arg temp': ------------------------------------------------------------------------ double x(), y(), z(); double d() double x, y, z; { return x + y + z; } ------------------------------------------------------------------------ PCC has almost as many bugs as the C-shell, Donn Seeley University of Utah CS Dept donn@utah-cs.arpa 40 46' 6"N 111 50' 34"W (801) 581-5668 decvax!utah-cs!donn