Remove leading _ on header guards to comply with reserved identifier requirements...
authorSam Stuewe <halosghost@archlinux.info>
Sat, 23 Apr 2016 16:54:18 +0000 (11:54 -0500)
committerNikolaus Rath <Nikolaus@rath.org>
Sat, 23 Apr 2016 16:54:18 +0000 (09:54 -0700)
Remove leading _ on header guards to comply with reserved identifier requirements

include/cuse_lowlevel.h
include/fuse.h
include/fuse_common.h
include/fuse_lowlevel.h
include/fuse_opt.h

index e147fa26d96fb0692ea7626ed0683343459c0643..80476c20b5125e5662075f4c8f576c56038a0ab3 100644 (file)
@@ -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_ */
index 70f2f812c98164dc8f1dc558331be675c5e48d56..7f5daa83b55ccb4c71835b4b63ad6f321db1a0e8 100644 (file)
@@ -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_ */
index beb44c7d09899da4d768e8b31df7928df95e3672..d200d34492d15d8a4d3f96d41088a5e2c8550951 100644 (file)
@@ -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_ */
index 32908cb7677d028eeb35146ed131b22026241c39..89d10a7f55ab005eb4df81a2071454db0ecfbb7c 100644 (file)
@@ -6,8 +6,8 @@
   See the file COPYING.LIB.
 */
 
-#ifndef _FUSE_LOWLEVEL_H_
-#define _FUSE_LOWLEVEL_H_
+#ifndef FUSE_LOWLEVEL_H_
+#define FUSE_LOWLEVEL_H_
 
 /** @file
  *
@@ -1728,4 +1728,4 @@ void fuse_chan_put(struct fuse_chan *ch);
 }
 #endif
 
-#endif /* _FUSE_LOWLEVEL_H_ */
+#endif /* FUSE_LOWLEVEL_H_ */
index 20653b189eaba565a327083c56d2cb2fec7eb0c2..d8573e74fddca0647c1c73051258c8da565f4834 100644 (file)
@@ -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_ */