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