Guest User

Untitled

a guest
Jun 18th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #ifndef _STDBOOL_H
  2. #define _STDBOOL_H
  3.  
  4. #include <stdint.h>
  5.  
  6. typedef uint8_t bool;
  7.  
  8. #define true ((bool) 1U)
  9. #define false ((bool) 0U)
  10.  
  11. /* Signal that all the definitions are present. */
  12. #define __bool_true_false_are_defined 1
  13.  
  14. #endif /* stdbool.h */
Add Comment
Please, Sign In to add comment