From a89da16e69d636fb11480bb75c65ab2dd581af7c Mon Sep 17 00:00:00 2001 From: Stefan Berger Date: Sat, 11 Feb 2017 21:06:19 -0500 Subject: [PATCH] Add missing include for stdarg.h Fix compilation problems like the following: /usr/local/lib/libtpms.so: undefined reference to `va_start' /usr/local/lib/libtpms.so: undefined reference to `va_end' Signed-off-by: Stefan Berger --- src/tpm_library.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tpm_library.c b/src/tpm_library.c index 72a64f5c..c8e96ba7 100644 --- a/src/tpm_library.c +++ b/src/tpm_library.c @@ -43,6 +43,7 @@ #include #include #include +#include #include #ifdef USE_FREEBL_CRYPTO_LIBRARY