cool-bun-demo/types.h

12 lines
198 B
C
Raw Normal View History

2024-05-02 16:52:06 +00:00
#ifndef __TYPES_H__
#define __TYPES_H__
#include <exec/types.h>
typedef unsigned short color_t;
typedef unsigned short uint16_t;
typedef unsigned char uint8_t;
typedef signed char int8_t;
#endif