Michael Sperber wrote:
Felix will point out that allowing forms to be functions is a performance consideration.
GCC and probably other compilers support inline functions for C:
static inline int f(int x) { return x*x; }
For compilers that don't support inline, just do:
#define inline /* nothing */
--
--Per Bothner
per@xxxxxxxxxxx http://per.bothner.com/