diff options
author | Tejun Heo <tj@kernel.org> | 2008-10-16 16:08:57 +0200 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2008-10-16 16:08:57 +0200 |
commit | 29d434b39c807320fbe4bcdce0ab98a0b9fcb285 (patch) | |
tree | abb2db88d67449332dbc209a6e3724a3412f6a9c /fs/fuse | |
parent | 37194d0723b9b68b4b299b2564ca99e3d0a094c3 (diff) |
fuse: add include protectors
Add include protectors to include/linux/fuse.h and fs/fuse/fuse_i.h.
Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Diffstat (limited to 'fs/fuse')
-rw-r--r-- | fs/fuse/fuse_i.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h index 3a876076bdd..35accfdd747 100644 --- a/fs/fuse/fuse_i.h +++ b/fs/fuse/fuse_i.h @@ -6,6 +6,9 @@ See the file COPYING. */ +#ifndef _FS_FUSE_I_H +#define _FS_FUSE_I_H + #include <linux/fuse.h> #include <linux/fs.h> #include <linux/mount.h> @@ -655,3 +658,5 @@ void fuse_set_nowrite(struct inode *inode); void fuse_release_nowrite(struct inode *inode); u64 fuse_get_attr_version(struct fuse_conn *fc); + +#endif /* _FS_FUSE_I_H */ |