X-Git-Url: http://andersk.mit.edu/gitweb/splint.git/blobdiff_plain/d767066b40ee6d1187273de11f2f942f8a10e1e7..0bd4c301f40f5da75d0ccdc14d1aa1c40c297305:/src/Headers/bool.h diff --git a/src/Headers/bool.h b/src/Headers/bool.h index 03ba2c3..fd05907 100644 --- a/src/Headers/bool.h +++ b/src/Headers/bool.h @@ -8,11 +8,13 @@ # define BOOL_H # ifndef FALSE -# define FALSE 0 +/*@constant bool FALSE=false@*/ +# define FALSE false # endif # ifndef TRUE -# define TRUE (! FALSE) +/*@constant bool TRUE=true@*/ +# define TRUE true # endif extern /*@observer@*/ cstring bool_unparse (bool p_b) /*@*/ ;