Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.16-rc2 50 lines 932 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * asm-generic/int-ll64.h 4 * 5 * Integer declarations for architectures which use "long long" 6 * for 64-bit types. 7 */ 8#ifndef _ASM_GENERIC_INT_LL64_H 9#define _ASM_GENERIC_INT_LL64_H 10 11#include <uapi/asm-generic/int-ll64.h> 12 13 14#ifndef __ASSEMBLY__ 15 16typedef signed char s8; 17typedef unsigned char u8; 18 19typedef signed short s16; 20typedef unsigned short u16; 21 22typedef signed int s32; 23typedef unsigned int u32; 24 25typedef signed long long s64; 26typedef unsigned long long u64; 27 28#define S8_C(x) x 29#define U8_C(x) x ## U 30#define S16_C(x) x 31#define U16_C(x) x ## U 32#define S32_C(x) x 33#define U32_C(x) x ## U 34#define S64_C(x) x ## LL 35#define U64_C(x) x ## ULL 36 37#else /* __ASSEMBLY__ */ 38 39#define S8_C(x) x 40#define U8_C(x) x 41#define S16_C(x) x 42#define U16_C(x) x 43#define S32_C(x) x 44#define U32_C(x) x 45#define S64_C(x) x 46#define U64_C(x) x 47 48#endif /* __ASSEMBLY__ */ 49 50#endif /* _ASM_GENERIC_INT_LL64_H */