00001 /* 00002 * Host Identity Protocol 00003 * Copyright (C) 2002-05 the Boeing Company 00004 * 00005 * Replacement for asm/types.h 00006 */ 00007 00008 typedef unsigned char __u8; 00009 00010 typedef unsigned short __u16; 00011 00012 typedef unsigned int __u32; 00013 typedef signed int __s32; 00014 00015 typedef unsigned __int64 __u64; 00016 00017 /* mostly for PFKEY */ 00018 typedef char * caddr_t; 00019 typedef unsigned char uint8_t; 00020 typedef unsigned char u_int8_t; 00021 typedef unsigned short uint16_t; 00022 typedef unsigned short u_int16_t; 00023 typedef unsigned int uint32_t; 00024 typedef unsigned int u_int32_t; 00025 typedef unsigned __int64 uint64_t; 00026 typedef unsigned __int64 u_int64_t; 00027
1.5.1