summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-02-11 00:07:12 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-02-11 00:07:12 -0800
commit1e90ef3c7658e2770940f6cb870bb671733cc188 (patch)
treea5ee247eec27a88beb2b45dc401bc8348afc7339
parentef9d1a2ddb3cd1b237b82c7dda092527a2e7bb00 (diff)
downloadtxr-1e90ef3c7658e2770940f6cb870bb671733cc188.tar.gz
txr-1e90ef3c7658e2770940f6cb870bb671733cc188.tar.bz2
txr-1e90ef3c7658e2770940f6cb870bb671733cc188.zip
* arith.c: Remove inclusion of unneeded headers: <limits.h>
and <dirent.h>.
-rw-r--r--ChangeLog5
-rw-r--r--arith.c3
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index b5524435..a899e546 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-02-11 Kaz Kylheku <kaz@kylheku.com>
+
+ * arith.c: Remove inclusion of unneeded headers: <limits.h>
+ and <dirent.h>.
+
2014-02-10 Kaz Kylheku <kaz@kylheku.com>
* Makefile (OBJS): New object file, combi.o.
diff --git a/arith.c b/arith.c
index f9924d71..f227f217 100644
--- a/arith.c
+++ b/arith.c
@@ -29,12 +29,9 @@
#include <stdlib.h>
#include <string.h>
#include <wctype.h>
-#include <limits.h>
#include <stdarg.h>
-#include <dirent.h>
#include <setjmp.h>
#include <wchar.h>
-#include <limits.h>
#include <math.h>
#include <signal.h>
#include <ctype.h>