Subversion Repositories Kolibri OS

Rev

Rev 6412 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6412 siemargl 1
#ifndef _STDBOOL_H
2
#define _STDBOOL_H
3
 
4
/* ISOC99 boolean */
5
 
6
#define bool	_Bool
7
#define true	1
8
#define false	0
6424 siemargl 9
#define __bool_true_false_are_defined 1
6412 siemargl 10
 
11
#endif /* _STDBOOL_H */