mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 22:21:52 +01:00
b4619783ca
stdint.h exists for a reason.
13 lines
130 B
C
13 lines
130 B
C
#pragma once
|
|
#include <stdint.h>
|
|
|
|
typedef int32_t BOOL;
|
|
|
|
#ifndef TRUE
|
|
#define TRUE 1
|
|
#endif
|
|
|
|
#ifndef FALSE
|
|
#define FALSE 0
|
|
#endif
|