diff options
author | qwx <devnull@localhost> | 2018-05-13 07:13:00 +0200 |
---|---|---|
committer | qwx <devnull@localhost> | 2018-05-13 07:13:00 +0200 |
commit | 19d6a98038953b27f539e1fd2187b7cfec9b108d (patch) | |
tree | d08f300d511d592027d6233d386134b3d8358658 | |
parent | 88537cfe9b483846ccd7367c81fde5dcfe16a4d5 (diff) | |
download | plan9front-19d6a98038953b27f539e1fd2187b7cfec9b108d.tar.xz |
ape: add signed fixed size integer typedefs to u.h
-rw-r--r-- | sys/include/ape/u.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/include/ape/u.h b/sys/include/ape/u.h index 310379c08..2cc85822c 100644 --- a/sys/include/ape/u.h +++ b/sys/include/ape/u.h @@ -20,5 +20,9 @@ typedef uchar u8int; typedef ushort u16int; typedef ulong u32int; typedef uvlong u64int; +typedef signed char s8int; +typedef signed short s16int; +typedef signed int s32int; +typedef signed long long s64int; #endif |