diff options
author | Russ Cox <rsc@swtch.com> | 2008-03-06 15:13:42 -0500 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2008-03-06 15:13:42 -0500 |
commit | 949b59cd4e7d1f55c40692040ec1ab5ce150e6fc (patch) | |
tree | 8f487b9fb5a43046c5d307b09d537f254f09bf86 /include | |
parent | c42f7f420164d651905fbadbe9bbd8618132d951 (diff) | |
download | plan9port-949b59cd4e7d1f55c40692040ec1ab5ce150e6fc.tar.gz plan9port-949b59cd4e7d1f55c40692040ec1ab5ce150e6fc.tar.bz2 plan9port-949b59cd4e7d1f55c40692040ec1ab5ce150e6fc.zip |
u.h: add intptr
Diffstat (limited to 'include')
-rw-r--r-- | include/u.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/u.h b/include/u.h index ac9699ca..2d29a36b 100644 --- a/include/u.h +++ b/include/u.h @@ -144,6 +144,7 @@ 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; |