aboutsummaryrefslogtreecommitdiff
path: root/include/fuse_opt.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_opt.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_opt.h')
-rw-r--r--include/fuse_opt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/fuse_opt.h b/include/fuse_opt.h
index 20653b1..d8573e7 100644
--- a/include/fuse_opt.h
+++ b/include/fuse_opt.h
@@ -6,8 +6,8 @@
See the file COPYING.LIB.
*/
-#ifndef _FUSE_OPT_H_
-#define _FUSE_OPT_H_
+#ifndef FUSE_OPT_H_
+#define FUSE_OPT_H_
/** @file
*
@@ -268,4 +268,4 @@ int fuse_opt_match(const struct fuse_opt opts[], const char *opt);
}
#endif
-#endif /* _FUSE_OPT_H_ */
+#endif /* FUSE_OPT_H_ */