diff options
author | Sam Stuewe <halosghost@archlinux.info> | 2016-04-23 11:54:18 -0500 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2016-04-23 09:54:18 -0700 |
commit | 482a49c25682bdc537f1a28ca18926ee278658f3 (patch) | |
tree | 782f1b63702d9723ac1e138249ff81f76621e1a3 /include/fuse_lowlevel.h | |
parent | dad33d55f8e540f656e4b27e7c7ad386a7193850 (diff) | |
download | libfuse-482a49c25682bdc537f1a28ca18926ee278658f3.tar.gz |
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/fuse_lowlevel.h')
-rw-r--r-- | include/fuse_lowlevel.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h index 32908cb..89d10a7 100644 --- a/include/fuse_lowlevel.h +++ b/include/fuse_lowlevel.h @@ -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_ */ |