From: Jann Horn Date: Sat, 29 Mar 2014 08:48:07 +0000 (+0100) Subject: fix X-Git-Url: http://git.thejh.net/?p=libjh.git;a=commitdiff_plain;h=eb7ae33b36e1abed7708410d317074ad0dade835;ds=sidebyside fix --- diff --git a/bufchain.c b/bufchain.c index 55a1fed..1359f6d 100644 --- a/bufchain.c +++ b/bufchain.c @@ -6,8 +6,6 @@ #include #include -#include "bufio.h" - int bufio_chain_append(bufio_chain *bc, void *buf, size_t len) { bufio_chain_entry *e = calloc(1, sizeof(*e)); if (e != NULL) return -1; diff --git a/netconn.c b/netconn.c index f4c78d6..329b837 100644 --- a/netconn.c +++ b/netconn.c @@ -6,8 +6,6 @@ #include #include -#include "bufio.h" - static void connection_waiting_cb(struct ev_loop *loop, ev_io *w, int revents) { bufio_connection *con = (bufio_connection *)w->data; if (revents & EV_READ) {