diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-01-22 08:01:24 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-01-22 08:01:24 -0800 |
commit | 41a513cf5d74413f6a1d5956eae6cc833c852abc (patch) | |
tree | 88781f7c034e51f066daf5ef2d97e17cfc277c15 /rand.c | |
parent | 3ad9aafbd02e23c0d4a8fdb41f02ff25fa03746a (diff) | |
download | txr-41a513cf5d74413f6a1d5956eae6cc833c852abc.tar.gz txr-41a513cf5d74413f6a1d5956eae6cc833c852abc.tar.bz2 txr-41a513cf5d74413f6a1d5956eae6cc833c852abc.zip |
Header file cleanup.
* arith.c, cadr.c, debug.c, eval.c, filter.c, gencadr.txr, glob.c,
hash.c, linenoise/linenoise.c, lisplib.c, match.c, parser.c, rand.c,
regex.c, signal.c, stream.c, struct.c, sysif.c, syslog.c, txr.c,
unwind.c, utf8.c: Remove unncessary header files.
Diffstat (limited to 'rand.c')
-rw-r--r-- | rand.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -24,16 +24,11 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include <stdio.h> -#include <stdlib.h> #include <string.h> #include <wctype.h> -#include <limits.h> #include <stdarg.h> -#include <dirent.h> #include <wchar.h> #include <limits.h> -#include <time.h> #include <signal.h> #include "config.h" #if HAVE_UNISTD_H @@ -43,7 +38,6 @@ #include "signal.h" #include "unwind.h" #include "arith.h" -#include "txr.h" #include "rand.h" #include "eval.h" |