summaryrefslogtreecommitdiff
path: root/05/tcc-0.9.25/include/stdbool.h
blob: 6ed13a611aa247d1dbe370d9d96a1e15e16a7453 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _STDBOOL_H
#define _STDBOOL_H

/* ISOC99 boolean */

#define bool	_Bool
#define true	1
#define false	0

#endif /* _STDBOOL_H */