Commit 1ebf4f39 by Richard Kenner

(BOOL): Define BOOL as int for VxWorks.

From-SVN: r12827
parent 3c34d513
......@@ -36,7 +36,11 @@ extern "C" {
/*
** Definition of the boolean type.
*/
#ifdef __vxworks
typedef int BOOL;
#else
typedef unsigned char BOOL;
#endif
#define YES (BOOL)1
#define NO (BOOL)0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment