diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-02-08 07:20:22 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 12:22:34 -0500 |
commit | 531d7d4256f3726b93f7a91f97132a944ab28148 (patch) | |
tree | 24c9e99d52948ecb7d36cf2a0894096bb4d490ea /include/asm-h8300 | |
parent | 90b315af12b427eeb09b2812343fb4ef9d01cf17 (diff) |
asm-*/posix_types.h: scrub __GLIBC__
Some arches (like alpha and ia64) already have a clean posix_types.h header.
This brings all the others in line by removing all references to __GLIBC__
(and some undocumented __USE_ALL).
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Acked-by: Ingo Molnar <mingo@elte.hu>
Cc: Ulrich Drepper <drepper@redhat.com>
Cc: Roland McGrath <roland@redhat.com>
Cc: <linux-arch@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-h8300')
-rw-r--r-- | include/asm-h8300/posix_types.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/include/asm-h8300/posix_types.h b/include/asm-h8300/posix_types.h index 7de94b1fd0e5..5c553927fc53 100644 --- a/include/asm-h8300/posix_types.h +++ b/include/asm-h8300/posix_types.h | |||
@@ -38,14 +38,10 @@ typedef long long __kernel_loff_t; | |||
38 | #endif | 38 | #endif |
39 | 39 | ||
40 | typedef struct { | 40 | typedef struct { |
41 | #if defined(__KERNEL__) || defined(__USE_ALL) | ||
42 | int val[2]; | 41 | int val[2]; |
43 | #else /* !defined(__KERNEL__) && !defined(__USE_ALL) */ | ||
44 | int __val[2]; | ||
45 | #endif /* !defined(__KERNEL__) && !defined(__USE_ALL) */ | ||
46 | } __kernel_fsid_t; | 42 | } __kernel_fsid_t; |
47 | 43 | ||
48 | #if defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2) | 44 | #if defined(__KERNEL__) |
49 | 45 | ||
50 | #undef __FD_SET | 46 | #undef __FD_SET |
51 | #define __FD_SET(d, set) ((set)->fds_bits[__FDELT(d)] |= __FDMASK(d)) | 47 | #define __FD_SET(d, set) ((set)->fds_bits[__FDELT(d)] |= __FDMASK(d)) |
@@ -59,6 +55,6 @@ typedef struct { | |||
59 | #undef __FD_ZERO | 55 | #undef __FD_ZERO |
60 | #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof(*(fd_set *)fdsetp))) | 56 | #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof(*(fd_set *)fdsetp))) |
61 | 57 | ||
62 | #endif /* defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2) */ | 58 | #endif /* defined(__KERNEL__) */ |
63 | 59 | ||
64 | #endif | 60 | #endif |