code: 9ferno

Download patch

ref: e16b4d85dd6b1cf14834387b765113114dabeae2
parent: 35bdc136d0940d7795819b978869b978cfb82d55
author: 9ferno <gophone2015@gmail.com>
date: Tue Aug 10 18:21:12 EDT 2021

added missing type definitions

--- a/9front/amd64/include/u.h
+++ b/9front/amd64/include/u.h
@@ -1,3 +1,12 @@
 #include "/amd64/include/u.h"
 typedef intptr WORD;
 typedef uintptr        UWORD;
+
+typedef unsigned char	u8;
+typedef unsigned short	u16;
+typedef unsigned int	u32;
+typedef unsigned long long u64;
+typedef signed char s8;
+typedef signed short s16;
+typedef signed int s32;
+typedef signed long long s64;