TSOS/include/kernel/ktypes.h

14 lines
266 B
C
Raw Normal View History

// Shorthand definitions of various types
// used in the kernel
#ifndef TSOS_KTYPES
#define TSOS_KTYPES
typedef unsigned char byte;
typedef unsigned short int u16;
typedef short int i16;
typedef unsigned int uint;
2022-11-17 12:42:45 +01:00
typedef unsigned int u32;
typedef int i32;
#endif