Also, you can't reutrn a value from a macro like that. You can
from an inline function.
Untrue:
#define val_plus_two(val) do { ((val) + 2); } while(0)
It still does not annul the multi-evaluation reasoning for using
inline functions instead of macros though ;-)
Later,
David S. Miller
dm@sgi.com