xref: /minix3/crypto/external/bsd/heimdal/dist/lib/roken/stdbool.hin (revision ebfedea0ce5bbe81e252ddf32d732e40fb633fae)
1*ebfedea0SLionel Sambuc#ifndef _STDBOOL_H
2*ebfedea0SLionel Sambuc#define _STDBOOL_H
3*ebfedea0SLionel Sambuc
4*ebfedea0SLionel Sambuc#ifndef __GNUC__
5*ebfedea0SLionel Sambuctypedef int _Bool;
6*ebfedea0SLionel Sambuc#endif
7*ebfedea0SLionel Sambuc
8*ebfedea0SLionel Sambuc#define bool    _Bool
9*ebfedea0SLionel Sambuc#define true    1
10*ebfedea0SLionel Sambuc#define false   0
11*ebfedea0SLionel Sambuc#define __bool_true_false_are_defined 1
12*ebfedea0SLionel Sambuc
13*ebfedea0SLionel Sambuc#endif	/* _STDBOOL_H */
14