From 4fa8477667627f23a2e925071029114383b30c1b Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 22 Feb 2010 22:32:55 +0100 Subject: md5.c: Always include string.h to fix memcpy warnings --- src/md5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/md5.c b/src/md5.c index 3011a53..d221713 100644 --- a/src/md5.c +++ b/src/md5.c @@ -39,6 +39,7 @@ */ #include "md5.h" +#include #ifdef TEST /* @@ -46,7 +47,6 @@ * The test program should print out the same values as given in section * A.5 of RFC 1321, reproduced below. */ -#include main() { static const char *const test[7] = { -- cgit v1.2.3