summaryrefslogtreecommitdiff
path: root/src/base/bool.h
blob: 9d02ba273a0c38cfd74de1fefdf6cff0d94090a2 (plain)
1
2
3
4
5
6
7
8
9

#ifndef BOOL_H
	#define BOOL_H
	#define bool_t int
	#define TRUE	1
	#define FALSE	0

	#include "main.h"
#endif