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 <stefanb@linux.vnet.ibm.com>
This commit is contained in:
Stefan Berger 2017-02-11 21:06:19 -05:00
parent ad44846dda
commit a89da16e69

View File

@ -43,6 +43,7 @@
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <ctype.h>
#ifdef USE_FREEBL_CRYPTO_LIBRARY