shithub: riscv

Download patch

ref: 19d6a98038953b27f539e1fd2187b7cfec9b108d
parent: 88537cfe9b483846ccd7367c81fde5dcfe16a4d5
author: qwx <devnull@localhost>
date: Sun May 13 03:13:00 EDT 2018

ape: add signed fixed size integer typedefs to u.h

--- a/sys/include/ape/u.h
+++ b/sys/include/ape/u.h
@@ -20,5 +20,9 @@
 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