
#ifndef _bool_h
#ifdef __GNUG__
#pragma once
#endif
#define _bool_h 1

enum bool { FALSE = 0, TRUE = 1 };

#endif
