summaryrefslogtreecommitdiffstats
path: root/utils/mount/stropts.h
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2008-07-15 12:13:10 -0400
committerSteve Dickson <steved@redhat.com>2008-07-15 12:13:10 -0400
commit1ca49510fd1742955330583f259db7faf501a5e5 (patch)
tree4d7a0d391f564ce136db36b352cf942f393a5fa9 /utils/mount/stropts.h
parentd5a09b59916d4ef24b15e34eac394149cb7a641a (diff)
downloadnfs-utils-1ca49510fd1742955330583f259db7faf501a5e5.tar.gz
nfs-utils-1ca49510fd1742955330583f259db7faf501a5e5.tar.xz
nfs-utils-1ca49510fd1742955330583f259db7faf501a5e5.zip
Clean up: add the traditional pre-processor safety check in headers under
utils/mount to prevent them from being included multiple times. For headers that already have this, use a more unique macro name to reduce the probability that some other header may use the same macro. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'utils/mount/stropts.h')
-rw-r--r--utils/mount/stropts.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/mount/stropts.h b/utils/mount/stropts.h
index b926d68..b4fd888 100644
--- a/utils/mount/stropts.h
+++ b/utils/mount/stropts.h
@@ -21,5 +21,10 @@
*
*/
+#ifndef _NFS_UTILS_MOUNT_STROPTS_H
+#define _NFS_UTILS_MOUNT_STROPTS_H
+
int nfsmount_string(const char *, const char *, const char *, int,
char **, int, int);
+
+#endif /* _NFS_UTILS_MOUNT_STROPTS_H */