aboutsummaryrefslogtreecommitdiff
path: root/include/u.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/u.h')
-rw-r--r--include/u.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/include/u.h b/include/u.h
index f481cf0..617e41b 100644
--- a/include/u.h
+++ b/include/u.h
@@ -15,19 +15,24 @@
typedef char byte;
typedef unsigned char ubyte, uchar;
-typedef signed char sbyte, schar;
+typedef signed char sbyte, schar;
typedef unsigned short ushort;
typedef signed short sshort;
+typedef unsigned int uint;
+typedef signed int sint;
+
+typedef unsigned long ulong;
+typedef signed long slong;
+
typedef unsigned long ulong;
-typedef signed long slong;
+typedef signed long slong;
typedef long long vlong;
typedef unsigned long long uvlong;
typedef signed long long svlong;
-typedef unsigned int uint;
typedef uint8_t uint8;
typedef uint16_t uint16;
typedef uint32_t uint32;