aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mn10300
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2010-08-12 11:54:41 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2010-08-12 12:51:35 -0400
commit3ad001c04f1ad21b87a7648450b53e7f04194f2a (patch)
tree7f3212be8095b0fedd3dc19b1267bbc394db48d2 /arch/mn10300
parent3557957616412db3f496d75c6baef836f8f55a67 (diff)
MN10300: Fix size_t and ssize_t
With the newer compilers, size_t and ssize_t are expected to be (un)signed int rather than (un)signed long. Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/mn10300')
-rw-r--r--arch/mn10300/include/asm/posix_types.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/mn10300/include/asm/posix_types.h b/arch/mn10300/include/asm/posix_types.h
index 077567c37798..56ffbc158798 100644
--- a/arch/mn10300/include/asm/posix_types.h
+++ b/arch/mn10300/include/asm/posix_types.h
@@ -25,8 +25,13 @@ typedef int __kernel_pid_t;
25typedef unsigned short __kernel_ipc_pid_t; 25typedef unsigned short __kernel_ipc_pid_t;
26typedef unsigned short __kernel_uid_t; 26typedef unsigned short __kernel_uid_t;
27typedef unsigned short __kernel_gid_t; 27typedef unsigned short __kernel_gid_t;
28#if __GNUC__ == 4
29typedef unsigned int __kernel_size_t;
30typedef signed int __kernel_ssize_t;
31#else
28typedef unsigned long __kernel_size_t; 32typedef unsigned long __kernel_size_t;
29typedef long __kernel_ssize_t; 33typedef signed long __kernel_ssize_t;
34#endif
30typedef int __kernel_ptrdiff_t; 35typedef int __kernel_ptrdiff_t;
31typedef long __kernel_time_t; 36typedef long __kernel_time_t;
32typedef long __kernel_suseconds_t; 37typedef long __kernel_suseconds_t;