summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--arith.c1
-rw-r--r--hash.c1
-rw-r--r--lib.c1
-rw-r--r--rand.c1
-rw-r--r--stream.c1
-rw-r--r--syslog.c1
7 files changed, 6 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 4dea85d2..c8c49f6d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-12-11 Kaz Kylheku <kaz@kylheku.com>
+
+ * arith.c, hash.c, lib.c, rand.c, stream.c, syslog.c: Removing
+ #include <assert.h> since none of these modules uses the standard C
+ assert macro.
+
2013-12-10 Kaz Kylheku <kaz@kylheku.com>
* eval.c (eval_init): closelog_wrap interned.
diff --git a/arith.c b/arith.c
index bad9ce50..6b190f2b 100644
--- a/arith.c
+++ b/arith.c
@@ -29,7 +29,6 @@
#include <stdlib.h>
#include <string.h>
#include <wctype.h>
-#include <assert.h>
#include <limits.h>
#include <stdarg.h>
#include <dirent.h>
diff --git a/hash.c b/hash.c
index d10450bf..8e9313f5 100644
--- a/hash.c
+++ b/hash.c
@@ -29,7 +29,6 @@
#include <dirent.h>
#include <stdarg.h>
#include <stdlib.h>
-#include <assert.h>
#include <setjmp.h>
#include <limits.h>
#include "config.h"
diff --git a/lib.c b/lib.c
index cd3d6315..16e5d08e 100644
--- a/lib.c
+++ b/lib.c
@@ -28,7 +28,6 @@
#include <stdlib.h>
#include <string.h>
#include <wctype.h>
-#include <assert.h>
#include <limits.h>
#include <stdarg.h>
#include <dirent.h>
diff --git a/rand.c b/rand.c
index 733c91d5..92b508d0 100644
--- a/rand.c
+++ b/rand.c
@@ -28,7 +28,6 @@
#include <stdlib.h>
#include <string.h>
#include <wctype.h>
-#include <assert.h>
#include <limits.h>
#include <stdarg.h>
#include <dirent.h>
diff --git a/stream.c b/stream.c
index 2e79aae6..e5e43ac6 100644
--- a/stream.c
+++ b/stream.c
@@ -29,7 +29,6 @@
#include <dirent.h>
#include <stdarg.h>
#include <stdlib.h>
-#include <assert.h>
#include <setjmp.h>
#include <errno.h>
#include <ctype.h>
diff --git a/syslog.c b/syslog.c
index 209c00fa..01c9cc2f 100644
--- a/syslog.c
+++ b/syslog.c
@@ -27,7 +27,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
-#include <assert.h>
#include <setjmp.h>
#include <wchar.h>
#include <dirent.h>