aboutsummaryrefslogtreecommitdiff
path: root/dtc.h
diff options
context:
space:
mode:
authorDavid Gibson <dgibson@sneetch.(none)>2005-07-11 16:49:52 +1000
committerDavid Gibson <dgibson@sneetch.(none)>2005-07-11 16:49:52 +1000
commit03a9b9dcdc29df37e40d08aaa80f3274ffd56354 (patch)
treea86fa9b43f0897b0690cd0f3d1ae06f9625541e5 /dtc.h
parent7ee3ffd43f6b45178c5e73e9b666a836ee333143 (diff)
downloaddtc-03a9b9dcdc29df37e40d08aaa80f3274ffd56354.zip
dtc-03a9b9dcdc29df37e40d08aaa80f3274ffd56354.tar.gz
dtc-03a9b9dcdc29df37e40d08aaa80f3274ffd56354.tar.bz2
Use u8 instead of uint8_t, as we do with the other size types.
Diffstat (limited to 'dtc.h')
-rw-r--r--dtc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/dtc.h b/dtc.h
index 27a4852..93c3e60 100644
--- a/dtc.h
+++ b/dtc.h
@@ -62,6 +62,7 @@ static inline void *xrealloc(void *p, size_t len)
return new;
}
+typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;