-/*
- * Quads are defined as arrays of 2 longs to ensure dense packing for the
- * protocol and to facilitate xdr conversion.
- */
-struct nfs_uquad {
- u_int32_t nfsuquad[2];
-} __attribute__((packed));
-typedef struct nfs_uquad nfsuint64;
-
-#if 0 /* XXX - this doesn't seemed to be used and it doesn't work
- * with non-gcc, so comment it out for now.
- */
-
-/*
- * Used to convert between two u_longs and a u_quad_t.
- */
-union nfs_quadconvert {
- u_int32_t lval[2];
- u_int64_t qval;
-} __attribute__((packed));
-typedef union nfs_quadconvert nfsquad_t;
-
-#endif
-