aboutsummaryrefslogtreecommitdiff
path: root/include/cuse_lowlevel.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/cuse_lowlevel.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/cuse_lowlevel.h')
-rw-r--r--include/cuse_lowlevel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/cuse_lowlevel.h b/include/cuse_lowlevel.h
index e147fa2..80476c2 100644
--- a/include/cuse_lowlevel.h
+++ b/include/cuse_lowlevel.h
@@ -9,8 +9,8 @@
Read example/cusexmp.c for usages.
*/
-#ifndef _CUSE_LOWLEVEL_H_
-#define _CUSE_LOWLEVEL_H_
+#ifndef CUSE_LOWLEVEL_H_
+#define CUSE_LOWLEVEL_H_
#ifndef FUSE_USE_VERSION
#define FUSE_USE_VERSION 29
@@ -84,4 +84,4 @@ int cuse_lowlevel_main(int argc, char *argv[], const struct cuse_info *ci,
}
#endif
-#endif /* _CUSE_LOWLEVEL_H_ */
+#endif /* CUSE_LOWLEVEL_H_ */