Use u8 instead of uint8_t, as we do with the other size types.
parent
7ee3ffd43f
commit
03a9b9dcdc
|
@ -30,7 +30,7 @@ extern struct node *device_tree;
|
||||||
|
|
||||||
%union {
|
%union {
|
||||||
cell_t cval;
|
cell_t cval;
|
||||||
uint8_t byte;
|
u8 byte;
|
||||||
char *str;
|
char *str;
|
||||||
struct data data;
|
struct data data;
|
||||||
struct property *prop;
|
struct property *prop;
|
||||||
|
|
Loading…
Reference in New Issue