trash/nice-os
Clone repo:
git clone https://git.topcheto.eu/trash/nice-os.gitFile contents
#ifndef TYPES_H
#define TYPES_H
typedef unsigned long uint64_t;
typedef long int64_t;
typedef unsigned uint32_t;
typedef int int32_t;
typedef unsigned short uint16_t;
typedef short int16_t;
typedef unsigned char uint8_t;
typedef char int8_t;
#endif