From 482a49c25682bdc537f1a28ca18926ee278658f3 Mon Sep 17 00:00:00 2001 From: Sam Stuewe Date: Sat, 23 Apr 2016 11:54:18 -0500 Subject: Remove leading _ on header guards to comply with reserved identifier requirements (#29) Remove leading _ on header guards to comply with reserved identifier requirements --- include/fuse_common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/fuse_common.h') 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 directly; use or instead." #endif -#ifndef _FUSE_COMMON_H_ -#define _FUSE_COMMON_H_ +#ifndef FUSE_COMMON_H_ +#define FUSE_COMMON_H_ #include "fuse_opt.h" #include @@ -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_ */ -- cgit v1.2.3