Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. #ifndef _STDBOOL_H
  2. #define _STDBOOL_H
  3.  
  4. /* believe it or not but the Single Unix Specification actually
  5.  * specifies this header, see
  6.  * http://www.opengroup.org/onlinepubs/007904975/basedefs/stdbool.h.html */
  7.  
  8. #define bool int
  9. #define true 1
  10. #define false 0
  11. #define __bool_true_false_are_defined 1
  12.  
  13. #endif
  14.