// This file was extracted from the TCG Published | |
// Trusted Platform Module Library | |
// Part 4: Supporting Routines | |
// Family "2.0" | |
// Level 00 Revision 01.16 | |
// October 30, 2014 | |
#ifndef _BOOL_H | |
#define _BOOL_H | |
#if defined(TRUE) | |
#undef TRUE | |
#endif | |
#if defined FALSE | |
#undef FALSE | |
#endif | |
typedef int BOOL; | |
#define FALSE ((BOOL)0) | |
#define TRUE ((BOOL)1) | |
#endif |