blob: 4b0cdc8f4407983eb13fdc00d8b9458dd3e18a3e (
plain)
1
2
3
4
5
6
7
8
9
10
|
// common.h
#pragma once
#include <stdint.h>
typedef u8 uint8_t_least_t
typedef i8 int8_t_least_t
typedef u16 uint16_least_t
typedef i16 int16_least_t
typedef u32 uint32_least_t
typedef i32 int32_least_t
|