Why on earth was I creating the data file with x permission? Silly
[sgt/agedu] / trie.c
diff --git a/trie.c b/trie.c
index 1344bdf..51fba3e 100644 (file)
--- a/trie.c
+++ b/trie.c
@@ -2,17 +2,8 @@
  * trie.c: implementation of trie.h.
  */
 
-#include <assert.h>
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-#include <errno.h>
-
-#include <sys/types.h>
-#include <unistd.h>
-
 #include "agedu.h"
-#include "malloc.h"
+#include "alloc.h"
 #include "trie.h"
 
 #define alignof(typ) ( offsetof(struct { char c; typ t; }, t) )