aboutsummaryrefslogtreecommitdiff
path: root/source/boolean.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/boolean.h')
-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