- (dtucker) [cipher-aes.c] Include string.h for memcpy and friends.  Noted
   by Pekka Savola.
diff --git a/cipher-aes.c b/cipher-aes.c
index 14ef10f..3ea5949 100644
--- a/cipher-aes.c
+++ b/cipher-aes.c
@@ -33,6 +33,7 @@
 #include <openssl/evp.h>
 
 #include <stdarg.h>
+#include <string.h>
 
 #include "rijndael.h"
 #include "xmalloc.h"