diff options
author | Arnd Bergmann <arnd@arndb.de> | 2009-02-25 18:51:45 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-03-26 13:14:21 -0400 |
commit | 3a471cbc081b6bf2b58a48db13d734ecd3b0d437 (patch) | |
tree | e61d9d7023ddb8aa27aaf3d51df6bd45bdb71a5e /include/asm-generic | |
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')
-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 @@ | |||
1 | #ifndef _GENERIC_STATFS_H | 1 | #ifndef _GENERIC_STATFS_H |
2 | #define _GENERIC_STATFS_H | 2 | #define _GENERIC_STATFS_H |
3 | 3 | ||
4 | #ifndef __KERNEL_STRICT_NAMES | 4 | #include <linux/types.h> |
5 | # include <linux/types.h> | 5 | |
6 | #ifdef __KERNEL__ | ||
6 | typedef __kernel_fsid_t fsid_t; | 7 | typedef __kernel_fsid_t fsid_t; |
7 | #endif | 8 | #endif |
8 | 9 | ||