omos-tcnj2024/sys/include/types.h
Agnosto Dvonik bdc2e5cb63 types
2024-02-17 15:00:38 -05:00

12 lines
174 B
C

#ifndef TYPES_H
#define TYPES_H
typedef unsigned int u32;
typedef unsigned short u16;
typedef unsigned char u8;
typedef int s32;
typedef short s16;
typedef char s8;
#endif