diff options
author | Arnd Bergmann <arnd@arndb.de> | 2009-02-26 00:51:45 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-03-26 18:14:21 +0100 |
commit | 3a471cbc081b6bf2b58a48db13d734ecd3b0d437 (patch) | |
tree | e61d9d7023ddb8aa27aaf3d51df6bd45bdb71a5e /include/asm-generic/statfs.h | |
parent | 60c195c729532815c5209c81442fa0eb26ace706 (diff) |
remove __KERNEL_STRICT_NAMES
With the last used of non-strict names gone from the
exported header files, we can remove the old libc5
compatibility cruft from our headers and only export
strict types.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-generic/statfs.h')
-rw-r--r-- | include/asm-generic/statfs.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/asm-generic/statfs.h b/include/asm-generic/statfs.h index 6129d6802149..3b4fb3e52f0d 100644 --- a/include/asm-generic/statfs.h +++ b/include/asm-generic/statfs.h @@ -1,8 +1,9 @@ #ifndef _GENERIC_STATFS_H #define _GENERIC_STATFS_H -#ifndef __KERNEL_STRICT_NAMES -# include <linux/types.h> +#include <linux/types.h> + +#ifdef __KERNEL__ typedef __kernel_fsid_t fsid_t; #endif |