aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-06-10 14:49:45 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-06-10 14:49:45 -0700
commite41eb5691417ecacade402759231f64778e3147f (patch)
treec28606655266f2702a30277f283e83b62f9a2cbb /include
parent5daf8d56cdf6aecd1b7301c622c3e35eaa47bd42 (diff)
checkin: massive restructuring of dvtm
Diffstat (limited to 'include')
-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;