aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse.h
diff options
context:
space:
mode:
authorSam Stuewe <halosghost@archlinux.info>2016-04-23 11:54:18 -0500
committerNikolaus Rath <Nikolaus@rath.org>2016-04-23 09:54:18 -0700
commit482a49c25682bdc537f1a28ca18926ee278658f3 (patch)
tree782f1b63702d9723ac1e138249ff81f76621e1a3 /include/fuse.h
parentdad33d55f8e540f656e4b27e7c7ad386a7193850 (diff)
downloadlibfuse-482a49c25682bdc537f1a28ca18926ee278658f3.tar.gz
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.h')
-rw-r--r--include/fuse.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/fuse.h b/include/fuse.h
index 70f2f81..7f5daa8 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -6,8 +6,8 @@
See the file COPYING.LIB.
*/
-#ifndef _FUSE_H_
-#define _FUSE_H_
+#ifndef FUSE_H_
+#define FUSE_H_
/** @file
*
@@ -936,4 +936,4 @@ struct fuse_session *fuse_get_session(struct fuse *f);
}
#endif
-#endif /* _FUSE_H_ */
+#endif /* FUSE_H_ */