Changeset eb60b04
- Timestamp:
- Mar 25, 2019, 1:40:35 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 5bf1f3e
- Parents:
- d3c1c6a (diff), 1097bb7 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/stdhdr/stdbool.h
rd3c1c6a reb60b04 10 10 // Created On : Mon Jul 4 23:25:26 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Jul 5 20:39:51 201613 // Update Count : 1 212 // Last Modified On : Mon Mar 25 08:00:08 2019 13 // Update Count : 15 14 14 // 15 15 16 16 extern "C" { 17 17 #include_next <stdbool.h> // has internal check for multiple expansion 18 19 // allows printing as true/false 20 #if defined( true ) 21 #undef true 22 #define true ((_Bool)1) 23 #endif // true 24 25 #if defined( false ) 26 #undef false 27 #define false ((_Bool)0) 28 #endif // false 18 29 } // extern "C" 19 30
Note: See TracChangeset
for help on using the changeset viewer.