diff options
Diffstat (limited to 'nfs/mount.h')
-rw-r--r-- | nfs/mount.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/nfs/mount.h b/nfs/mount.h index b1862442..4cb62a83 100644 --- a/nfs/mount.h +++ b/nfs/mount.h @@ -20,8 +20,11 @@ /* These constants define the RPC mount protocol; see RFC 1094. */ -#define MOUNT_RPC_PROGRAM 100005 -#define MOUNT_RPC_VERSION 1 +#ifndef NFS_MOUNT_H +#define NFS_MOUNT_H + +#define MOUNTPROG 100005 +#define MOUNTVERS 1 /* Obnoxious arbitrary limits */ #define MOUNT_MNTPATHLEN 1024 @@ -33,3 +36,5 @@ #define MOUNTPROC_UMNT 3 #define MOUNTPROC_UMNTALL 4 #define MOUNTPROC_EXPORT 5 + +#endif /* NFS_MOUNT_H */ |