aboutsummaryrefslogtreecommitdiff
path: root/include/stdbool.h
blob: 111b8f2a9ba6c1873d0d0229cec5966451478f67 (plain)
1
2
3
4
5
6
7
8
#ifndef __STDBOOL_H__
#define __STDBOOL_H__

typedef int bool;
#define false 0
#define true 1
#endif