summaryrefslogtreecommitdiffstats
path: root/utils/mount/error.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/error.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/error.h')
-rw-r--r--utils/mount/error.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/mount/error.h b/utils/mount/error.h
index 8b8e9ae..7126de5 100644
--- a/utils/mount/error.h
+++ b/utils/mount/error.h
@@ -21,6 +21,9 @@
*
*/
+#ifndef _NFS_UTILS_MOUNT_ERROR_H
+#define _NFS_UTILS_MOUNT_ERROR_H
+
char *nfs_strerror(int);
void mount_error(const char *, const char *, int);
@@ -28,3 +31,5 @@ void rpc_mount_errors(char *, int, int);
void sys_mount_errors(char *, int, int, int);
void umount_error(int, const char *);
+
+#endif /* _NFS_UTILS_MOUNT_ERROR_H */