unix: fix compiler warning in async.c

Include missing <string.h> header. Fixes the following compiler warning:

  src/unix/async.c:182:7: warning: implicit declaration of
  function ‘memmove’ [-Wimplicit-function-declaration]
This commit is contained in:
Ben Noordhuis 2012-10-20 23:36:00 +02:00
parent 209abbab27
commit 1bb1ba27dd

View File

@ -24,6 +24,7 @@
#include <errno.h>
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
static int uv__async_init(uv_loop_t* loop);