Rename malloc.c to alloc.c, and my master Makefile to GNUmakefile,
[sgt/agedu] / trie.c
diff --git a/trie.c b/trie.c
index 1344bdf..eb9fb81 100644 (file)
--- a/trie.c
+++ b/trie.c
@@ -12,7 +12,7 @@
 #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) )