This commit is contained in:
Agnosto Dvonik 2024-02-17 15:00:38 -05:00
parent 1b219ee054
commit bdc2e5cb63
1 changed files with 11 additions and 0 deletions

11
sys/include/types.h Normal file
View File

@ -0,0 +1,11 @@
#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