| Index: src/platform/tpm_lite/src/tlcl/tlcl_internal.h
|
| diff --git a/src/platform/tpm_lite/src/tlcl/tlcl_internal.h b/src/platform/tpm_lite/src/tlcl/tlcl_internal.h
|
| index 1ca71c076787c039a76351ceaca4d10400ce6553..f9a1b7b83fa9aa1e9769543f395de4eedfaee169 100644
|
| --- a/src/platform/tpm_lite/src/tlcl/tlcl_internal.h
|
| +++ b/src/platform/tpm_lite/src/tlcl/tlcl_internal.h
|
| @@ -6,7 +6,6 @@
|
| #ifndef TPM_LITE_TLCL_INTERNAL_H_
|
| #define TPM_LITE_TLCL_INTERNAL_H_
|
|
|
| -#include <stdarg.h>
|
| #include <stdint.h>
|
| #include <stdio.h>
|
| #include <stdlib.h>
|
| @@ -15,43 +14,6 @@ typedef int bool;
|
| const bool true = 1;
|
| const bool false = 0;
|
|
|
| -#define POSSIBLY_UNUSED __attribute__((unused))
|
| -
|
| -#ifdef __STRICT_ANSI__
|
| -#define INLINE
|
| -#else
|
| -#define INLINE inline
|
| -#endif
|
| -
|
| -/*
|
| - * Output an error message and quit the program.
|
| - */
|
| -static void error(const char *format, ...) {
|
| - va_list ap;
|
| - va_start(ap, format);
|
| - fprintf(stderr, "ERROR: ");
|
| - vfprintf(stderr, format, ap);
|
| - va_end(ap);
|
| - exit(1);
|
| -}
|
| -
|
| -/*
|
| - * Output a warning and continue.
|
| - */
|
| -POSSIBLY_UNUSED
|
| -static void warning(const char *format, ...) {
|
| - va_list ap;
|
| - va_start(ap, format);
|
| - fprintf(stderr, "WARNING: ");
|
| - vfprintf(stderr, format, ap);
|
| - va_end(ap);
|
| - exit(1);
|
| -}
|
| -
|
| -#define assert(expr) do { if (!(expr)) { \
|
| - error("assert fail: %s at %s:%d\n", \
|
| - #expr, __FILE__, __LINE__); }} while(0)
|
| -
|
| /*
|
| * Conversion functions. ToTpmTYPE puts a value of type TYPE into a TPM
|
| * command buffer. FromTpmTYPE gets a value of type TYPE from a TPM command
|
|
|