From 443d6288386f5521efa7d49bc8ea5be04f5fd696 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Sun, 19 Feb 2012 18:11:39 -0500 Subject: libmach, acid, db: 64-bit support --- include/u.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/u.h') diff --git a/include/u.h b/include/u.h index 58b29ca8..7ed634e7 100644 --- a/include/u.h +++ b/include/u.h @@ -146,16 +146,16 @@ typedef signed char schar; typedef unsigned long long uvlong; typedef long long vlong; -typedef uint64_t u64int; -typedef int64_t s64int; +typedef uvlong u64int; +typedef vlong s64int; typedef uint8_t u8int; typedef int8_t s8int; typedef uint16_t u16int; typedef int16_t s16int; typedef uintptr_t uintptr; typedef intptr_t intptr; -typedef uint32_t u32int; -typedef int32_t s32int; +typedef uint u32int; +typedef int s32int; typedef u32int uint32; typedef s32int int32; -- cgit v1.2.3