diff options
| author | Russ Cox <rsc@swtch.com> | 2010-07-14 11:15:55 -0700 |
|---|---|---|
| committer | Russ Cox <rsc@swtch.com> | 2010-07-14 11:15:55 -0700 |
| commit | 8377cc7a4b9c49f8bad0afded9ab82c25d76d514 (patch) | |
| tree | b2b443d5682ed2a1a7f84df056d2b61295f49665 /include | |
| parent | f92863adf47cd8426d3c2f62b386f532b5688ca1 (diff) | |
u.h: add int8, uint8
R=rsc
http://codereview.appspot.com/1791044
Diffstat (limited to 'include')
| -rw-r--r-- | include/u.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/u.h b/include/u.h index 0e56f98b..58b29ca8 100644 --- a/include/u.h +++ b/include/u.h @@ -163,6 +163,8 @@ typedef u16int uint16; typedef s16int int16; typedef u64int uint64; typedef s64int int64; +typedef u8int uint8; +typedef s8int int8; #undef _NEEDUCHAR #undef _NEEDUSHORT |