Mail Archives: djgpp/1996/10/25/14:28:43
Eli Zaretskii (eliz AT is DOT elta DOT co DOT il) wrote:
: #define max(a,b) ({ typeof(a) _tmp_a = (a); \
: typeof(b) _tmp_b = (b); \
: (_tmp_a > _tmp_b) ? _tmp_a : _tmp_b; })
So then the following code would be legal?
x={ int s, c; s=sin(a); c=cos(a); s*s*y+s*c*y+c*c*y; };
Is this legal under other languages tooor is it just a DJGPP specific
thing?
(Don't rack your brain to hard at what it does, I just came up with a
random example :-)
-----------------------------------------
Blaine Hodge <bhodge AT gpu DOT srv DOT ualberta DOT ca>
Homepage: http://www.ualberta.ca/~bhodge/
"I am currently between signatures." -me
- Raw text -