Commit 837815a0 authored by Andrew Price's avatar Andrew Price
Browse files

Include <string.h> for memset in poll-epoll.c

poll-epoll.c:20:2: error: implicit declaration of function ‘memset’ [-Werror=implicit-function-declaration]
  memset(&ev, 0, sizeof(ev));
parent 5a100571
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
#include <sys/epoll.h>
#include <strings.h>
#include <string.h>

#include <socket.h>
#include "poll.h"