Implement a machine-independent (word size-independent) FICL_TRUE.

This commit is contained in:
Daniel C. Sobral 2000-01-28 03:59:12 +00:00
parent c2881538fa
commit bc9ca81f3d
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ struct ficl_dict;
** complement of false... that unifies logical and bitwise operations ** complement of false... that unifies logical and bitwise operations
** nicely. ** nicely.
*/ */
#define FICL_TRUE (0xffffffffL) #define FICL_TRUE (~(0L))
#define FICL_FALSE (0) #define FICL_FALSE (0)
#define FICL_BOOL(x) ((x) ? FICL_TRUE : FICL_FALSE) #define FICL_BOOL(x) ((x) ? FICL_TRUE : FICL_FALSE)