mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-06 00:18:17 +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
|