summaryrefslogtreecommitdiff
path: root/include/bool.h
blob: d122b85abf1227de5cd5f110a7f05295b261ff14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

#ifndef BOOL_H

#define BOOL_H

#include "main.h"

#define bool_t int

#define TRUE	1
#define FALSE	0

#endif