aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-05-19 19:12:10 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-05-19 19:12:10 -0700
commitb779c6f7d73e5f70b2d886ed75e6e65217ad1e85 (patch)
tree480864b08c5242cf7c9de7d47c56f66e240948a5 /include
parent13772a8a2120017981d280bfe120fdbb74f27860 (diff)
checkin: found a large bug associated to ident resetting the buffer vector
Diffstat (limited to 'include')
-rw-r--r--include/u.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/u.h b/include/u.h
index 28bc2e4..3fafcda 100644
--- a/include/u.h
+++ b/include/u.h
@@ -17,7 +17,7 @@ typedef char byte;
typedef unsigned char ubyte;
typedef signed char sbyte;
-typedef long long vlong;
+typedef long long vlong;
typedef unsigned long long uvlong;
typedef unsigned int uint;
@@ -39,8 +39,6 @@ typedef intptr_t intptr;
typedef int error;
-typedef void* Iface;
-
#define nil NULL
// ------------------------------------------------------------------