Home | History | Annotate | Download | only in tpm2
      1 // This file was extracted from the TCG Published
      2 // Trusted Platform Module Library
      3 // Part 4: Supporting Routines
      4 // Family "2.0"
      5 // Level 00 Revision 01.16
      6 // October 30, 2014
      7 
      8 #ifndef      _BOOL_H
      9 #define      _BOOL_H
     10 #if defined(TRUE)
     11 #undef TRUE
     12 #endif
     13 #if defined FALSE
     14 #undef FALSE
     15 #endif
     16 typedef int BOOL;
     17 #define FALSE    ((BOOL)0)
     18 #define TRUE     ((BOOL)1)
     19 #endif
     20