git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5771 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
37034c5ecf
commit
3ab7994e84
|
@ -69,14 +69,14 @@
|
|||
* @brief Generic 'false' boolean constant.
|
||||
*/
|
||||
#if !defined(FALSE) || defined(__DOXYGEN__)
|
||||
#define FALSE false
|
||||
#define FALSE 0
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @brief Generic 'true' boolean constant.
|
||||
*/
|
||||
#if !defined(TRUE) || defined(__DOXYGEN__)
|
||||
#define TRUE true
|
||||
#define TRUE !0
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue