mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 14:42:38 +01:00
13 lines
126 B
C
13 lines
126 B
C
|
#pragma once
|
||
|
#include <stdint.h>
|
||
|
|
||
|
typedef int BOOL;
|
||
|
|
||
|
#ifndef TRUE
|
||
|
#define TRUE 1
|
||
|
#endif
|
||
|
|
||
|
#ifndef FALSE
|
||
|
#define FALSE 0
|
||
|
#endif
|