forked from KolibriOS/kolibrios
4f7ee97ec9
git-svn-id: svn://kolibrios.org@4680 a494cfbc-eb01-0410-851d-a64ba20cac60
14 lines
306 B
C
14 lines
306 B
C
#ifndef _STDBOOL_H
|
|
#define _STDBOOL_H
|
|
|
|
/* believe it or not but the Single Unix Specification actually
|
|
* specifies this header, see
|
|
* http://www.opengroup.org/onlinepubs/007904975/basedefs/stdbool.h.html */
|
|
|
|
#define bool int
|
|
#define true 1
|
|
#define false 0
|
|
#define __bool_true_false_are_defined 1
|
|
|
|
#endif
|