From b786c75e7a07add860792926ea352a5f254b67f7 Mon Sep 17 00:00:00 2001 From: Tim Cava Date: Mon, 15 Jul 2013 04:23:40 +0000 Subject: [PATCH] Include string.h in arcfour's MD5 implementation, since it uses memset(). git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@290 13b04d17-f746-0410-82c6-800466cd88b0 --- dll/arcfour/md5.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dll/arcfour/md5.c b/dll/arcfour/md5.c index df0cc3b..a1627eb 100644 --- a/dll/arcfour/md5.c +++ b/dll/arcfour/md5.c @@ -1,5 +1,6 @@ /* MD5 Message Digest algorithm */ +#include #include "md5.h" /* Prototypes */