fix
authorJann Horn <jannhorn@googlemail.com>
Sat, 29 Mar 2014 08:48:07 +0000 (09:48 +0100)
committerJann Horn <jannhorn@googlemail.com>
Sat, 29 Mar 2014 08:48:07 +0000 (09:48 +0100)
bufchain.c
netconn.c

index 55a1fed..1359f6d 100644 (file)
@@ -6,8 +6,6 @@
 #include <ev.h>
 #include <unistd.h>
 
-#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;
index f4c78d6..329b837 100644 (file)
--- a/netconn.c
+++ b/netconn.c
@@ -6,8 +6,6 @@
 #include <assert.h>
 #include <ev.h>
 
-#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) {