On 15 Jul 2002, Karl Fogel wrote: > #define APR_DECLARE_INHERIT_SET(name) \ > APR_DECLARE(apr_status_t) apr_##name##_inherit_set(apr_##name##_t *name)
That's what I figured. :-/
Rather than having a separate parameter to the macro, I think I'd rather
see something like this:
#define APR_DECLARE_INHERIT_SET(name) \
APR_DECLARE(apr_status_t) apr_##name##_inherit_set( \
apr_##name##_t *the##name)
thesocket, mysocket, socket_param, something like that.
--Cliff
