This is an old revision of the document!
Most useful GCC extensions to C language; avoid by using -pedantic.
-pedantic
#define maxint(a,b) \ ({int _a = (a), _b = (b); _a > _b ? _a : _b; })