Use u8 instead of uint8_t, as we do with the other size types.
diff --git a/dtc.h b/dtc.h
index 27a4852..93c3e60 100644
--- a/dtc.h
+++ b/dtc.h
@@ -62,6 +62,7 @@
 	return new;
 }
 
+typedef uint8_t u8;
 typedef uint16_t u16;
 typedef uint32_t u32;
 typedef uint64_t u64;