00001 /** 00002 * @file common.h 00003 * @brief Common defines 00004 * @author (C) Peter Ivanov, 2007 00005 * 00006 * Created: 2007-05-19 11:29:32 00007 * Last modify: 2010-04-02 16:25:04 ivanovp {Time-stamp} 00008 * Licence: GPL 00009 */ 00010 #ifndef __INCLUDE_COMMON_H 00011 #define __INCLUDE_COMMON_H 00012 00013 #ifndef bool_t 00014 typedef char bool_t; 00015 #endif 00016 #ifndef TRUE 00017 #define TRUE 1 00018 #endif 00019 #ifndef FALSE 00020 #define FALSE 0 00021 #endif 00022 00023 #endif // __INCLUDE_COMMON_H
1.6.3