diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-09-19 23:04:12 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-09-19 23:04:12 -0700 |
commit | c0569ec469e1770031052e327e3ced357df30cab (patch) | |
tree | ef5886e9078a7db96fb57e850ed85c806c56d756 | |
parent | 583bca9101916ca2af7b05ce6269ab5c1cb9b845 (diff) | |
download | txr-c0569ec469e1770031052e327e3ced357df30cab.tar.gz txr-c0569ec469e1770031052e327e3ced357df30cab.tar.bz2 txr-c0569ec469e1770031052e327e3ced357df30cab.zip |
cleanup: remove unnecessary header includes.
* eval.c: doesn't need rand.h.
* filter.c: doesn't need gc.h.
* parser.l: doesn't need eval.h.
* parser.y: doesn't need utf8.h, stream.h, args.h or cadr.h.
-rw-r--r-- | eval.c | 1 | ||||
-rw-r--r-- | filter.c | 1 | ||||
-rw-r--r-- | parser.l | 1 | ||||
-rw-r--r-- | parser.y | 4 |
4 files changed, 0 insertions, 7 deletions
@@ -48,7 +48,6 @@ #include "hash.h" #include "debug.h" #include "match.h" -#include "rand.h" #include "txr.h" #include "combi.h" #include "lisplib.h" @@ -39,7 +39,6 @@ #include "unwind.h" #include "match.h" #include "filter.h" -#include "gc.h" #include "eval.h" #include "stream.h" @@ -50,7 +50,6 @@ #include "hash.h" #include "y.tab.h" #include "parser.h" -#include "eval.h" #include "txr.h" #define YY_INPUT(buf, result, max_size) \ @@ -43,16 +43,12 @@ #include "signal.h" #include "unwind.h" #include "regex.h" -#include "utf8.h" #include "match.h" #include "hash.h" #include "struct.h" #include "eval.h" -#include "stream.h" #include "y.tab.h" #include "gc.h" -#include "args.h" -#include "cadr.h" #include "debug.h" #include "txr.h" #include "itypes.h" |