forgot toolchain
[tomato.git] / release / src-rt-6.x.4708 / toolchains / hndtools-arm-linux-2.6.36-uclibc-4.5.3 / arm-brcm-linux-uclibcgnueabi / sysroot / usr / include / asm-generic / int-ll64.h
blob0ede0470d73b08da6f2230c9639cac4d0341245b
1 /*
2 * asm-generic/int-ll64.h
4 * Integer declarations for architectures which use "long long"
5 * for 64-bit types.
6 */
8 #ifndef _ASM_GENERIC_INT_LL64_H
9 #define _ASM_GENERIC_INT_LL64_H
11 #include <asm/bitsperlong.h>
13 #ifndef __ASSEMBLY__
15 * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
16 * header files exported to user space
19 typedef __signed__ char __s8;
20 typedef unsigned char __u8;
22 typedef __signed__ short __s16;
23 typedef unsigned short __u16;
25 typedef __signed__ int __s32;
26 typedef unsigned int __u32;
28 #ifdef __GNUC__
29 __extension__ typedef __signed__ long long __s64;
30 __extension__ typedef unsigned long long __u64;
31 #else
32 typedef __signed__ long long __s64;
33 typedef unsigned long long __u64;
34 #endif
36 #endif /* __ASSEMBLY__ */
39 #endif /* _ASM_GENERIC_INT_LL64_H */