aboutsummaryrefslogtreecommitdiffstats
path: root/common/bool.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/bool.h')
-rw-r--r--common/bool.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/common/bool.h b/common/bool.h
deleted file mode 100644
index 6f714d09..00000000
--- a/common/bool.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef AL_BOOL_H
-#define AL_BOOL_H
-
-#ifdef HAVE_STDBOOL_H
-#include <stdbool.h>
-#endif
-
-#ifndef bool
-#ifdef HAVE_C99_BOOL
-#define bool _Bool
-#else
-#define bool int
-#endif
-#define false 0
-#define true 1
-#endif
-
-#endif /* AL_BOOL_H */