From 9957cc8287822b1f648ae91644cadb58288b4deb Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Tue, 2 Aug 2005 11:09:04 +0000 Subject: [PATCH] *** empty log message *** --- ase/types.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ase/types.h b/ase/types.h index 77ef6e39..7edacbe6 100644 --- a/ase/types.h +++ b/ase/types.h @@ -1,5 +1,5 @@ /* - * $Id: types.h,v 1.28 2005-06-08 15:49:35 bacon Exp $ + * $Id: types.h,v 1.29 2005-08-02 11:09:04 bacon Exp $ */ #ifndef _XP_TYPES_H_ @@ -16,15 +16,17 @@ #endif /* boolean type */ +/* #ifdef __cplusplus typedef bool xp_bool_t; #define xp_true true #define xp_false false #else +*/ typedef int xp_bool_t; #define xp_true (0 == 0) #define xp_false (0 != 0) -#endif +/*#endif*/ /* tri-state type */ typedef int xp_tri_t;