aboutsummaryrefslogtreecommitdiff
path: root/include/u.h
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-04-19 05:52:43 +0000
committerrsc <devnull@localhost>2004-04-19 05:52:43 +0000
commit785a73647a2191bd7a907a7fcc57542a6f7452e6 (patch)
tree20133e0841eee0243bfba500167f05c2f8165fff /include/u.h
parent25cb46f9304dbb20aee3713a1c4cc4224c0fc745 (diff)
downloadplan9port-785a73647a2191bd7a907a7fcc57542a6f7452e6.tar.gz
plan9port-785a73647a2191bd7a907a7fcc57542a6f7452e6.tar.bz2
plan9port-785a73647a2191bd7a907a7fcc57542a6f7452e6.zip
add s32int, s64int, s16int
Diffstat (limited to 'include/u.h')
-rw-r--r--include/u.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/u.h b/include/u.h
index 4716ce4f..515072c6 100644
--- a/include/u.h
+++ b/include/u.h
@@ -64,6 +64,8 @@ typedef long p9jmp_buf[sizeof(sigjmp_buf)/sizeof(long)];
typedef signed char schar;
typedef unsigned int u32int;
+typedef int s32int;
+
#ifdef _NEEDUCHAR
typedef unsigned char uchar;
#endif
@@ -79,8 +81,11 @@ typedef unsigned int u32int;
typedef unsigned long long uvlong;
typedef long long vlong;
typedef uvlong u64int;
+typedef vlong s64int;
typedef uchar u8int;
+typedef schar s8int;
typedef ushort u16int;
+typedef short s16int;
#undef _NEEDUCHAR
#undef _NEEDUSHORT