commit | 36796df81552d8ad7ca194c12ac71853aeca73c5 | [log] [tgz] |
---|---|---|
author | Rich Evans <rich.evans@arm.com> | Thu Feb 12 18:27:14 2015 +0000 |
committer | Rich Evans <rich.evans@arm.com> | Fri Feb 13 13:50:05 2015 +0000 |
tree | 6fec4925d13eab2e481f6924c8f44d9b5420349b | |
parent | d08a605dacb33f89a63c5a396e06d369adebca1c [diff] [blame] |
Added missing stdio in lib x509.c needed for sscanf
diff --git a/library/x509.c b/library/x509.c index c9b196f..4946ce6 100644 --- a/library/x509.c +++ b/library/x509.c
@@ -42,6 +42,7 @@ #include "polarssl/asn1.h" #include "polarssl/oid.h" +#include <stdio.h> #include <string.h> #if defined(POLARSSL_PEM_PARSE_C) @@ -65,6 +66,7 @@ #endif #if defined(POLARSSL_FS_IO) +#include <stdio.h> #if !defined(_WIN32) #include <sys/types.h> #include <sys/stat.h>