aboutsummaryrefslogtreecommitdiff
path: root/include/u.h
diff options
context:
space:
mode:
authorRuss Cox <rsc@swtch.com>2012-02-19 18:11:39 -0500
committerRuss Cox <rsc@swtch.com>2012-02-19 18:11:39 -0500
commit443d6288386f5521efa7d49bc8ea5be04f5fd696 (patch)
tree443a41a36f0bb96502fe218c4423a9e5571d7e17 /include/u.h
parent60d96f2e4385f0b4cee12add6dea545880a0e6a1 (diff)
downloadplan9port-443d6288386f5521efa7d49bc8ea5be04f5fd696.tar.gz
plan9port-443d6288386f5521efa7d49bc8ea5be04f5fd696.tar.bz2
plan9port-443d6288386f5521efa7d49bc8ea5be04f5fd696.zip
libmach, acid, db: 64-bit support
Diffstat (limited to 'include/u.h')
-rw-r--r--include/u.h8
1 files changed, 4 insertions, 4 deletions
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;