Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(194)

Unified Diff: src/platform/tpm_lite/src/tlcl/tlcl_internal.h

Issue 870004: Many upgrades to tpm_lite. (Closed)
Patch Set: Fix makefile comment. Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/platform/tpm_lite/src/tlcl/tlcl.c ('k') | src/platform/tpm_lite/src/tlcl/tpmextras.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « src/platform/tpm_lite/src/tlcl/tlcl.c ('k') | src/platform/tpm_lite/src/tlcl/tpmextras.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698