dect
/
linux-2.6
Archived
13
0
Fork 0

Making fs/minix/minix.h double including safe

I happened to find that fs/minix/minix.h doesn't guard double include.

Yes, I know this never cause something destructive because this is
self-evidence that no source file includes minix.h twice, but I think
fixing this is better than disregarding it.

Signed-off-by: Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Hitoshi Mitake 2009-06-22 11:11:20 +09:00 committed by Linus Torvalds
parent 44da59e400
commit e38be994b9
1 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,6 @@
#ifndef FS_MINIX_H
#define FS_MINIX_H
#include <linux/fs.h>
#include <linux/pagemap.h>
#include <linux/minix_fs.h>
@ -86,3 +89,5 @@ static inline struct minix_inode_info *minix_i(struct inode *inode)
{
return list_entry(inode, struct minix_inode_info, vfs_inode);
}
#endif /* FS_MINIX_H */