From bc485f95a825c46ca7ce05274e37c7ba7dffb1ab Mon Sep 17 00:00:00 2001 From: Tim Cava Date: Wed, 14 Aug 2013 22:32:48 +0000 Subject: [PATCH] Possum's llist uses memcpy, so include string.h and eliminate a warning. git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@322 13b04d17-f746-0410-82c6-800466cd88b0 --- dll/possum/llist.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dll/possum/llist.c b/dll/possum/llist.c index b437524..a2bafee 100644 --- a/dll/possum/llist.c +++ b/dll/possum/llist.c @@ -1,4 +1,5 @@ #include +#include #include "llist.h" llist *lmake(size_t size) {