Subject: Re: C Language Standard(s)
To: Simon J. Gerraty <sjg@frodo.dn.itg.telecom.com.au>
From: matthew green <mrg@mame.mu.OZ.AU>
List: current-users
Date: 12/21/1995 19:36:44
   foo(bar, baz)
   	char bar;
   	int baz;
   {
   	short what_i_want = baz;
   
   then all compilers will do the right thing and your code will work as
   you expected.  

except i'll have to cast call the calls to foo() with an
(int).  of course i think this is a bad idea.