crt/include/types.h
2021-01-08 04:13:12 +01:00

8 lines
151 B
C

#pragma once
typedef signed char int8_t;
typedef short int int16_t;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;