1*3cf360acSguenther/^const NFS_FHSIZE/a 2*3cf360acSguentherconst NFSX_V2FH = 32; 3*3cf360acSguentherconst NFSX_V3FHMAX = 64; 4*3cf360acSguenther. 5*3cf360acSguenther/^enum nfsstat /i 6*3cf360acSguenther#ifdef RPC_HDR 7*3cf360acSguenther%typedef int nfsstat; 8*3cf360acSguenther%#define xdr_nfsstat xdr_int 9*3cf360acSguenther#define nfsstat int 10*3cf360acSguenther. 11*3cf360acSguenther+1s/^enum nfsstat /enum / 12*3cf360acSguenther.,/^};/s/^/\%/ 13*3cf360acSguenthera 14*3cf360acSguenther#elif RPC_XDR 15*3cf360acSguenther#define nfsstat int 16*3cf360acSguenther#else 17*3cf360acSguenthertypedef int nfsstat; 18*3cf360acSguenther#endif 19*3cf360acSguenther. 20*3cf360acSguenther/^enum ftype /i 21*3cf360acSguenther#ifdef RPC_HDR 22*3cf360acSguenther%typedef int ftype; 23*3cf360acSguenther#define ftype int 24*3cf360acSguenther. 25*3cf360acSguenther+1s/^enum ftype /enum / 26*3cf360acSguenther.,/^};/s/^/\%/ 27*3cf360acSguenthera 28*3cf360acSguenther#elif RPC_XDR 29*3cf360acSguenther#define ftype int 30*3cf360acSguenther#else 31*3cf360acSguenthertypedef int ftype; 32*3cf360acSguenther#endif 33*3cf360acSguenther. 34*3cf360acSguentherwq 35