blob: 6e58145f89ac28f3fe965c486151f8f89f2eb505 [file] [log] [blame]
Vadim Bendebury56797522015-05-20 10:32:25 -07001// 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
16typedef int BOOL;
17#define FALSE ((BOOL)0)
18#define TRUE ((BOOL)1)
19#endif