Mail Archives: djgpp/1996/10/27/08:15:05
On 23 Oct 1996, B Hodge wrote:
> 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; };
I'm not sure it will work without parentheses around it:
x = ({ int s, c; s=sin(a); c=cos(a); s*s*y+s*c*y+c*c*y; });
But this is documented in the GCC docs; just read there.
> Is this legal under other languages tooor is it just a DJGPP specific
> thing?
It's GCC specific, so it will work on any platform if you use GCC.
- Raw text -