summaryrefslogtreecommitdiff
path: root/mips/include/u.h
diff options
context:
space:
mode:
authorqwx <devnull@localhost>2018-05-12 19:19:52 +0200
committerqwx <devnull@localhost>2018-05-12 19:19:52 +0200
commit70c7a9eb07516843da083b6231d55a07d28b9350 (patch)
tree60d4e259f888f91e086bf63b78095374df90f2a4 /mips/include/u.h
parent2728e065895e7af2493ed7af3b8897caa416adf6 (diff)
downloadplan9front-70c7a9eb07516843da083b6231d55a07d28b9350.tar.xz
add signed fixed size integer typedefs
Diffstat (limited to 'mips/include/u.h')
-rw-r--r--mips/include/u.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/mips/include/u.h b/mips/include/u.h
index f4c28fcb4..272680671 100644
--- a/mips/include/u.h
+++ b/mips/include/u.h
@@ -20,6 +20,10 @@ typedef unsigned char u8int;
typedef unsigned short u16int;
typedef unsigned int u32int;
typedef unsigned long long u64int;
+typedef signed char s8int;
+typedef signed short s16int;
+typedef signed int s32int;
+typedef signed long long s64int;
/* FCR */
#define FPINEX (1<<7)