http://gcc.gnu.org/onlinedocs/gcc-3.3.6/gcc/Min-and-Max.html

Jonathan Wakely jwakely.gcc@gmail.com
Tue Feb 22 05:04:00 GMT 2011


On 21 February 2011 20:57, Robert Gezelter wrote:
> Gentlemen,
>
> The example of the C preprocessor implementation of MIN is erroneous:
>
>     #define MIN(X,Y) ((X) < (Y) ? : (X) : (Y))
>
> should read:
>
>     #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))

Thanks for the report, but I don't think anyone's going to fix
problems in 3.x manuals, 4.3 is the oldest maintained version.



More information about the Gcc mailing list