Email list hosting service & mailing list manager


Re: Couple things... Per Bothner 24 Dec 2003 01:34 UTC

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
xxxxxx@bothner.com   http://per.bothner.com/