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