logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

stdbool.h (167B)


  1. #ifndef _STDBOOL_H
  2. #define _STDBOOL_H
  3. #ifndef __cplusplus
  4. #define true 1
  5. #define false 0
  6. #define bool _Bool
  7. #endif
  8. #define __bool_true_false_are_defined 1
  9. #endif