ia64/xen-unstable
changeset 7536:3843e518e092
Use standard int typedefs.
Signed-off-by: John Levon <levon@movementarian.org>
Signed-off-by: John Levon <levon@movementarian.org>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Thu Oct 27 17:16:12 2005 +0100 (2005-10-27) |
parents | 76392609363f |
children | 26fc51079f5f |
files | tools/libxc/xc_elf.h |
line diff
1.1 --- a/tools/libxc/xc_elf.h Thu Oct 27 17:09:01 2005 +0100 1.2 +++ b/tools/libxc/xc_elf.h Thu Oct 27 17:16:12 2005 +0100 1.3 @@ -24,26 +24,26 @@ 1.4 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 1.5 */ 1.6 1.7 -typedef u_int8_t Elf_Byte; 1.8 +typedef uint8_t Elf_Byte; 1.9 1.10 -typedef u_int32_t Elf32_Addr; /* Unsigned program address */ 1.11 -typedef u_int32_t Elf32_Off; /* Unsigned file offset */ 1.12 +typedef uint32_t Elf32_Addr; /* Unsigned program address */ 1.13 +typedef uint32_t Elf32_Off; /* Unsigned file offset */ 1.14 typedef int32_t Elf32_Sword; /* Signed large integer */ 1.15 -typedef u_int32_t Elf32_Word; /* Unsigned large integer */ 1.16 -typedef u_int16_t Elf32_Half; /* Unsigned medium integer */ 1.17 +typedef uint32_t Elf32_Word; /* Unsigned large integer */ 1.18 +typedef uint16_t Elf32_Half; /* Unsigned medium integer */ 1.19 1.20 -typedef u_int64_t Elf64_Addr; 1.21 -typedef u_int64_t Elf64_Off; 1.22 +typedef uint64_t Elf64_Addr; 1.23 +typedef uint64_t Elf64_Off; 1.24 typedef int32_t Elf64_Shalf; 1.25 1.26 typedef int32_t Elf64_Sword; 1.27 -typedef u_int32_t Elf64_Word; 1.28 +typedef uint32_t Elf64_Word; 1.29 1.30 typedef int64_t Elf64_Sxword; 1.31 -typedef u_int64_t Elf64_Xword; 1.32 +typedef uint64_t Elf64_Xword; 1.33 1.34 -typedef u_int32_t Elf64_Half; 1.35 -typedef u_int16_t Elf64_Quarter; 1.36 +typedef uint32_t Elf64_Half; 1.37 +typedef uint16_t Elf64_Quarter; 1.38 1.39 /* 1.40 * e_ident[] identification indexes