Rename malloc.c to alloc.c, and my master Makefile to GNUmakefile,
[sgt/agedu] / alloc.c
similarity index 97%
rename from malloc.c
rename to alloc.c
index 7de2e13..e5c018f 100644 (file)
--- a/malloc.c
+++ b/alloc.c
@@ -1,5 +1,5 @@
 /*
- * malloc.c: implementation of malloc.h
+ * alloc.c: implementation of alloc.h
  */
 
 #include <stdlib.h>
@@ -10,7 +10,7 @@
 #include <stdio.h>
 
 #include "agedu.h"
-#include "malloc.h"
+#include "alloc.h"
 
 extern void fatal(const char *, ...);