aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-generic
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2009-02-26 00:51:45 +0100
committerIngo Molnar <mingo@elte.hu>2009-03-26 18:14:21 +0100
commit3a471cbc081b6bf2b58a48db13d734ecd3b0d437 (patch)
treee61d9d7023ddb8aa27aaf3d51df6bd45bdb71a5e /include/asm-generic
parentmake netfilter use strict integer types (diff)
downloadlinux-dev-3a471cbc081b6bf2b58a48db13d734ecd3b0d437.tar.xz
linux-dev-3a471cbc081b6bf2b58a48db13d734ecd3b0d437.zip
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.h5
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