rx-xdr-deal-with-linux26-regparm-20040621

deal with regparm side effects in xdr calls. no clue if this works without regparm yet, that might actually be an issue
This commit is contained in:
Rainer Schöpf 2004-06-21 22:56:37 +00:00 committed by Derrick Brashear
parent e82999dedf
commit 6ed3d79dbd

View File

@ -172,8 +172,12 @@ enum xdr_op {
#if 0
typedef bool_t(*xdrproc_t) ();
#else
#ifdef AFS_I386_LINUX26_ENV
typedef bool_t(*xdrproc_t) (void *, caddr_t *, u_int);
#else
typedef bool_t(*xdrproc_t) (void *, ...);
#endif
#endif
/*