On Tue, Jul 15, 2003 at 01:38:26PM -0600, Jay A. St. Pierre wrote:
>       1 #define FALSE 0
>       2 #define TRUE 1
>
>       4 typedef int bool_t;
>       5

What about this:?

typedef int boolean; /* the name bool_t is reserved by C99 or POSIX */

#define FALSE ((boolean) 0)
#define TRUE ((boolean) 1)

/* Roland */
_______________________________________________
splint-discuss mailing list
[EMAIL PROTECTED]
http://www.splint.org/mailman/listinfo/splint-discuss

Reply via email to