chiark / gitweb /
Various bug fixes: understand requests for help properly, and fix the
[mLib] / arena.c
diff --git a/arena.c b/arena.c
index 3e13bf2909b4e850fdcc2fb89b54125c95e7d25d..58820fae5b87b5e4a16d6c5f266da6eff08c8254 100644 (file)
--- a/arena.c
+++ b/arena.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: arena.c,v 1.2 2000/07/16 12:29:16 mdw Exp $
+ * $Id: arena.c,v 1.3 2000/08/06 11:00:18 mdw Exp $
  *
  * Abstraction for memory allocation arenas
  *
@@ -30,6 +30,9 @@
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: arena.c,v $
+ * Revision 1.3  2000/08/06 11:00:18  mdw
+ * Daft bug fix.  Include <string.h>.
+ *
  * Revision 1.2  2000/07/16 12:29:16  mdw
  * Change to arena `realloc' interface, to fix a design bug.
  *
@@ -41,6 +44,7 @@
 /*----- Header files ------------------------------------------------------*/
 
 #include <stdlib.h>
+#include <string.h>
 
 #include "arena.h"