Blob Blame History Raw
commit b786c75e7a07add860792926ea352a5f254b67f7
Author: Tim Cava <tcava@users.sourceforge.net>
Date:   Mon Jul 15 04:23:40 2013 +0000

    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

diff --git a/dll/arcfour/md5.c b/dll/arcfour/md5.c
index df0cc3b03a2ff949..a1627eb6916985af 100644
--- a/dll/arcfour/md5.c
+++ b/dll/arcfour/md5.c
@@ -1,5 +1,6 @@
 /* MD5 Message Digest algorithm */
 
+#include <string.h>
 #include "md5.h"
 
 /* Prototypes */