libraries/libnxdrv/inc/stdtypes.h

23 lines
504 B
C
Raw Normal View History

// This file is part of noxos and licensed under the MIT open source license
#ifndef LIBNXDRV_STDTYPES_H
#define LIBNXDRV_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 //LIBNXDRV_STDTYPES_H