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_opt.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/fuse_opt.h') 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_ */ -- cgit v1.2.3