Redefined boolean constants.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5775 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2013-05-30 16:50:03 +00:00
parent 3ab7994e84
commit c001190732
1 changed files with 3 additions and 3 deletions

View File

@ -76,7 +76,7 @@
* @brief Generic 'true' boolean constant. * @brief Generic 'true' boolean constant.
*/ */
#if !defined(TRUE) || defined(__DOXYGEN__) #if !defined(TRUE) || defined(__DOXYGEN__)
#define TRUE !0 #define TRUE (!FALSE)
#endif #endif
/** /**