summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/sh/bits/kernel_types.h
diff options
context:
space:
mode:
authorDavid McCullough <davidm@snapgear.com>2002-08-27 01:20:21 +0000
committerDavid McCullough <davidm@snapgear.com>2002-08-27 01:20:21 +0000
commit4b2531defc3636e9db2e734b0799d44acbe6e977 (patch)
treef029245dabc86149264153b3cf827f18dda0b5a0 /libc/sysdeps/linux/sh/bits/kernel_types.h
parent4cd5ca906c65b15fc966b9d02d3f0cc1ae8817ff (diff)
Added __kernel_fsid_t to satisfy some apps that need it.
Definitions taken from 2.4 kernel sources for each of the platforms.
Diffstat (limited to 'libc/sysdeps/linux/sh/bits/kernel_types.h')
-rw-r--r--libc/sysdeps/linux/sh/bits/kernel_types.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/sh/bits/kernel_types.h b/libc/sysdeps/linux/sh/bits/kernel_types.h
index 690fe9dd9..0ce21d65b 100644
--- a/libc/sysdeps/linux/sh/bits/kernel_types.h
+++ b/libc/sysdeps/linux/sh/bits/kernel_types.h
@@ -32,4 +32,12 @@ typedef unsigned short __kernel_old_uid_t;
typedef unsigned short __kernel_old_gid_t;
typedef long long __kernel_loff_t;
+typedef struct {
+#ifdef __USE_ALL
+ int val[2];
+#else
+ int __val[2];
+#endif
+} __kernel_fsid_t;
+
#endif /* __ASM_SH_POSIX_TYPES_H */