mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-13 21:15:55 -05: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
|