add assert header to jh.h
authorJann Horn <jann@thejh.net>
Mon, 8 Jun 2015 21:01:27 +0000 (23:01 +0200)
committerJann Horn <jann@thejh.net>
Mon, 8 Jun 2015 21:01:27 +0000 (23:01 +0200)
bufchain.c
header.h
hex.c
io.c
netconn.c
ppm.c

index 1359f6d..422e51a 100644 (file)
@@ -2,8 +2,6 @@
 #include <sys/stat.h>
 #include <fcntl.h>
 #include <stdlib.h>
-#include <assert.h>
-#include <ev.h>
 #include <unistd.h>
 
 int bufio_chain_append(bufio_chain *bc, void *buf, size_t len) {
index 957788f..ac8c368 100644 (file)
--- a/header.h
+++ b/header.h
@@ -1,4 +1,5 @@
 #include <ev.h>
+#include <assert.h>
 
 /***** COMPILER-SPECIFIC STUFF *****/
 #ifdef __GNUC__
diff --git a/hex.c b/hex.c
index bdd37ab..3d9d07e 100644 (file)
--- a/hex.c
+++ b/hex.c
@@ -1,7 +1,6 @@
 // Copyright (2013) Jann Horn <jann@thejh.net>
 
 HEADER #include <sys/types.h>
-#include <assert.h>
 #include <string.h>
 
 static inline char hexchar(unsigned char c) {
diff --git a/io.c b/io.c
index ef1f912..1ef3d3d 100644 (file)
--- a/io.c
+++ b/io.c
@@ -8,7 +8,6 @@ HEADER #include <stdbool.h>
 #include <sys/stat.h>
 #include <fcntl.h>
 #include <string.h>
-#include <assert.h>
 #include <sys/mman.h>
 
 // Wrapper for `read` that retries on partial reads.
@@ -214,4 +213,4 @@ err_dup_out:
   fclose(*in);
 err_out:
   return EAI_SYSTEM;
-}
\ No newline at end of file
+}
index 329b837..3ecb5cb 100644 (file)
--- a/netconn.c
+++ b/netconn.c
@@ -3,8 +3,6 @@
 #include <errno.h>
 #include <unistd.h>
 #include <stdbool.h>
-#include <assert.h>
-#include <ev.h>
 
 static void connection_waiting_cb(struct ev_loop *loop, ev_io *w, int revents) {
   bufio_connection *con = (bufio_connection *)w->data;
diff --git a/ppm.c b/ppm.c
index 87b18e6..a8bf94a 100644 (file)
--- a/ppm.c
+++ b/ppm.c
@@ -2,7 +2,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <assert.h>
 #include <string.h>
 #include <errno.h>