summaryrefslogtreecommitdiff
path: root/library/cipher_wrap.c
diff options
context:
space:
mode:
authorManuel Pégourié-Gonnard <mpg@elzevir.fr>2015-02-10 12:47:52 +0000
committerManuel Pégourié-Gonnard <mpg@elzevir.fr>2015-02-10 12:47:52 +0000
commit0c851ee1c8d940a1a0314a7a0035f025e4cd8566 (patch)
tree85ca3a59e2f4d0d05328a8f8e51a7be7d585fda7 /library/cipher_wrap.c
parent1cc0a3405c771e2be332381901c2e6f4e0846e43 (diff)
Fix missing include in non-default things
Diffstat (limited to 'library/cipher_wrap.c')
-rw-r--r--library/cipher_wrap.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/library/cipher_wrap.c b/library/cipher_wrap.c
index b623b3c5..7b597d61 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