From 1bb1ba27ddfadc40986d35b7c2067a73c3cf1e14 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Sat, 20 Oct 2012 23:36:00 +0200 Subject: [PATCH] unix: fix compiler warning in async.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Include missing header. Fixes the following compiler warning: src/unix/async.c:182:7: warning: implicit declaration of function ‘memmove’ [-Wimplicit-function-declaration] --- src/unix/async.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/unix/async.c b/src/unix/async.c index 8ab3c903..6abc8125 100644 --- a/src/unix/async.c +++ b/src/unix/async.c @@ -24,6 +24,7 @@ #include #include #include +#include #include static int uv__async_init(uv_loop_t* loop);