matter.c

Cross-platform minimalist libc
git clone git://git.finwo.net/lib/matter.c
Log | Files | Refs | README | LICENSE

stdbool.h (167B)


      1 #ifndef _STDBOOL_H
      2 #define _STDBOOL_H
      3 
      4 #ifndef __cplusplus
      5 
      6 #define true 1
      7 #define false 0
      8 #define bool _Bool
      9 
     10 #define __bool_true_false_are_defined 1
     11 
     12 #endif
     13 
     14 #endif