500af9b2babe56ac6b5a6f22f6cb4fb757bd1196
[fw/sdcc] / device / include / pic16 / stdbool.h
1 /*-------------------------------------------------------------------------
2   stdbool.h - ANSI functions forward declarations
3
4    Ported to PIC16 port by Raphael Neider <rneider AT web.de> (2005)
5    
6              Written By -  Maarten Brock, sourceforge.brock@dse.nl (2004)
7
8    This library is free software; you can redistribute it and/or
9    modify it under the terms of the GNU Lesser General Public
10    License as published by the Free Software Foundation; either
11    version 2.1 of the License, or (at your option) any later version.
12
13    This library is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    Lesser General Public License for more details.
17
18    You should have received a copy of the GNU Lesser General Public
19    License along with this library; if not, write to the Free Software
20    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 -------------------------------------------------------------------------*/
22
23 /*
24 ** $Id$
25 */
26
27 #ifndef __PIC16_STDBOOL_H
28 #define __PIC16_STDBOOL_H 1
29
30 #define _Bool unsigned char
31
32 #define bool _Bool
33 #define true 1
34 #define false 0
35 #define __bool_true_false_are_defined 1
36
37 #define BOOL unsigned char
38
39 #endif  /* __PIC16_STDBOOL_H */