aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authortwinaphex2021-09-27 17:50:40 +0200
committertwinaphex2021-09-27 17:50:40 +0200
commite3fc5b25a5458aa496edf76af8617f557cbea630 (patch)
treec2d74d253794efea0339e4877bf5f6b735f1af3e /source
parent5a0ef7339e5eb875fc486c7459ee26b506eaf087 (diff)
downloadsnes9x2005-e3fc5b25a5458aa496edf76af8617f557cbea630.tar.gz
snes9x2005-e3fc5b25a5458aa496edf76af8617f557cbea630.tar.bz2
snes9x2005-e3fc5b25a5458aa496edf76af8617f557cbea630.zip
Get rid of source/boolean.h
Diffstat (limited to 'source')
-rw-r--r--source/boolean.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/source/boolean.h b/source/boolean.h
deleted file mode 100644
index d5dbdaf..0000000
--- a/source/boolean.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#include "../copyright"
-
-#ifndef __LIBRETRO_SDK_BOOLEAN_H
-#define __LIBRETRO_SDK_BOOLEAN_H
-
-#ifndef __cplusplus
-
-#if defined(_MSC_VER) && !defined(SN_TARGET_PS3)
-/* Hack applied for MSVC when compiling in C89 mode as it isn't C99 compliant. */
-#define bool unsigned char
-#define true 1
-#define false 0
-#else
-#include <stdbool.h>
-#endif
-
-#endif
-
-#endif