1 /* 2 * This file is never included by application software unless explicitly 3 * requested (e.g., via linux/types.h) in which case the application is 4 * Linux specific so (user-) name space pollution is not a major issue. 5 * However, for interoperability, libraries still need to be careful to 6 * avoid naming clashes. 7 * 8 * Based on <asm-alpha/types.h>. 9 * 10 * Modified 1998-2000, 2002 11 * David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co 12 */ 13 #ifndef _UAPI_ASM_IA64_TYPES_H 14 #define _UAPI_ASM_IA64_TYPES_H 15 16 17 #ifndef __KERNEL__ 18 #include <asm-generic/int-l64.h> 19 #endif 20 21 #ifdef __ASSEMBLY__ 22 # define __IA64_UL(x) (x) 23 # define __IA64_UL_CONST(x) x 24 25 #else 26 # define __IA64_UL(x) ((unsigned long)(x)) 27 # define __IA64_UL_CONST(x) x##UL 28 29 #endif /* !__ASSEMBLY__ */ 30 31 #endif /* _UAPI_ASM_IA64_TYPES_H */ 32