commit | 0c851ee1c8d940a1a0314a7a0035f025e4cd8566 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Tue Feb 10 12:47:52 2015 +0000 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Tue Feb 10 12:47:52 2015 +0000 |
tree | 85ca3a59e2f4d0d05328a8f8e51a7be7d585fda7 | |
parent | 1cc0a3405c771e2be332381901c2e6f4e0846e43 [diff] [blame] |
Fix missing include in non-default things
diff --git a/library/cipher_wrap.c b/library/cipher_wrap.c index b623b3c..7b597d6 100644 --- a/library/cipher_wrap.c +++ b/library/cipher_wrap.c
@@ -62,6 +62,10 @@ #include "polarssl/ccm.h" #endif +#if defined(POLARSSL_CIPHER_NULL_CIPHER) +#include <string.h> +#endif + #if defined(POLARSSL_PLATFORM_C) #include "polarssl/platform.h" #else