1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

cgen: define new u8 type

This commit is contained in:
Alexander Medvednikov 2021-07-27 19:07:47 +03:00
parent ef0161c233
commit b7f2adb69c

View File

@ -431,6 +431,7 @@ typedef int8_t i8;
typedef uint64_t u64;
typedef uint32_t u32;
typedef uint16_t u16;
typedef uint8_t u8;
typedef uint8_t byte;
typedef uint32_t rune;
typedef float f32;