mirror of
https://github.com/dgibson/dtc.git
synced 2025-10-13 16:27:39 -04:00
Use u8 instead of uint8_t, as we do with the other size types.
This commit is contained in:
parent
7ee3ffd43f
commit
03a9b9dcdc
2 changed files with 2 additions and 1 deletions
|
@ -30,7 +30,7 @@ extern struct node *device_tree;
|
|||
|
||||
%union {
|
||||
cell_t cval;
|
||||
uint8_t byte;
|
||||
u8 byte;
|
||||
char *str;
|
||||
struct data data;
|
||||
struct property *prop;
|
||||
|
|
1
dtc.h
1
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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue