// This file is part of noxos and licensed under the MIT open source license #ifndef LIBNX_STDTYPES_H #define LIBNX_STDTYPES_H typedef unsigned char uint8_t; typedef signed char int8_t; typedef unsigned short uint16_t; typedef signed short int16_t; typedef unsigned int uint32_t; typedef signed int int32_t; typedef unsigned long uint64_t; typedef signed long int64_t; typedef _Bool bool; #define true 1 #define false 0 #define NULL (void*)0 #endif //LIBNX_STDTYPES_H