summaryrefslogtreecommitdiff
path: root/uisimulator/win32/stdbool.h
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/win32/stdbool.h')
-rw-r--r--uisimulator/win32/stdbool.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/uisimulator/win32/stdbool.h b/uisimulator/win32/stdbool.h
deleted file mode 100644
index d91ef374b9..0000000000
--- a/uisimulator/win32/stdbool.h
+++ /dev/null
@@ -1,46 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Felix Arends
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19
20#ifndef __STDBOOL_H__
21#define __STDBOOL_H__ 1
22
23#ifndef __MINGW32__
24typedef unsigned int bool;
25#define __attribute__(s)
26
27#define true 1
28#define false 0
29#else
30
31typedef enum
32{
33 false = 0,
34 true = 1
35} bool;
36
37#define false false
38#define true true
39
40/* Signal that all the definitions are present. */
41#define __bool_true_false_are_defined 1
42
43#endif
44
45#endif /* __STDBOOL_H__ */
46