diff options
author | paul <paul@FreeBSD.org> | 1994-08-21 06:50:16 +0000 |
---|---|---|
committer | paul <paul@FreeBSD.org> | 1994-08-21 06:50:16 +0000 |
commit | 9e34f0cb594345b1c0c0d75fecdc1c0702edd52a (patch) | |
tree | 8a21f5d90c6dea0097f9d08e04f38b772c6840a9 /sys/nfs/xdr_subs.h | |
parent | 2f3d57ca817f531300bcacd718c8fda721ba7a6f (diff) | |
download | FreeBSD-src-9e34f0cb594345b1c0c0d75fecdc1c0702edd52a.zip FreeBSD-src-9e34f0cb594345b1c0c0d75fecdc1c0702edd52a.tar.gz |
More idempotency....... this is fun :-)
Diffstat (limited to 'sys/nfs/xdr_subs.h')
-rw-r--r-- | sys/nfs/xdr_subs.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/nfs/xdr_subs.h b/sys/nfs/xdr_subs.h index 98a1c01..b081b11 100644 --- a/sys/nfs/xdr_subs.h +++ b/sys/nfs/xdr_subs.h @@ -34,9 +34,12 @@ * SUCH DAMAGE. * * @(#)xdr_subs.h 8.1 (Berkeley) 6/10/93 - * $Id$ + * $Id: xdr_subs.h,v 1.2 1994/08/02 07:52:30 davidg Exp $ */ +#ifndef _NFS_XDR_SUBS_H_ +#define _NFS_XDR_SUBS_H_ + /* * Macros used for conversion to/from xdr representation by nfs... * These use the MACHINE DEPENDENT routines ntohl, htonl @@ -77,3 +80,5 @@ ((long *)(t))[0] = htonl(((long *)(f))[_QUAD_HIGHWORD]); \ ((long *)(t))[1] = htonl(((long *)(f))[_QUAD_LOWWORD]); \ } + +#endif |