aboutsummaryrefslogtreecommitdiff
path: root/include/fuse_common.h
diff options
context:
space:
mode:
authorGravatar Sam Stuewe <halosghost@archlinux.info>2016-04-23 11:54:18 -0500
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-04-23 09:54:18 -0700
commit482a49c25682bdc537f1a28ca18926ee278658f3 (patch)
tree782f1b63702d9723ac1e138249ff81f76621e1a3 /include/fuse_common.h
parentdad33d55f8e540f656e4b27e7c7ad386a7193850 (diff)
Remove leading _ on header guards to comply with reserved identifier requirements (#29)
Remove leading _ on header guards to comply with reserved identifier requirements
Diffstat (limited to 'include/fuse_common.h')
-rw-r--r--include/fuse_common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/fuse_common.h b/include/fuse_common.h
index beb44c7..d200d34 100644
--- a/include/fuse_common.h
+++ b/include/fuse_common.h
@@ -11,8 +11,8 @@
#error "Never include <fuse_common.h> directly; use <fuse.h> or <fuse_lowlevel.h> instead."
#endif
-#ifndef _FUSE_COMMON_H_
-#define _FUSE_COMMON_H_
+#ifndef FUSE_COMMON_H_
+#define FUSE_COMMON_H_
#include "fuse_opt.h"
#include <stdint.h>
@@ -523,4 +523,4 @@ struct _fuse_off_t_must_be_64bit_dummy_struct \
{ unsigned _fuse_off_t_must_be_64bit:((sizeof(off_t) == 8) ? 1 : -1); };
#endif
-#endif /* _FUSE_COMMON_H_ */
+#endif /* FUSE_COMMON_H_ */