Back to home page

Enduro/X

 
 

    


0001 #ifndef __STDBOOL_H__
0002 #define __STDBOOL_H__
0003 
0004 #ifndef __cplusplus
0005 
0006 typedef unsigned int bool;
0007 
0008 #define true 1
0009 #define false 0
0010 
0011 #endif //__cplusplus
0012 
0013 #endif //__STDBOOL_H__