toaruos/boot/types.h

11 lines
210 B
C
Raw Normal View History

2018-03-06 12:18:53 +03:00
#pragma once
typedef unsigned long long uint64_t;
typedef unsigned long uint32_t;
typedef unsigned short uint16_t;
typedef unsigned char uint8_t;
typedef signed char int8_t;
typedef unsigned long uintptr_t;