Include missing <mLib/alloc.h> header.
authormdw <mdw>
Tue, 1 Aug 2000 17:58:25 +0000 (17:58 +0000)
committermdw <mdw>
Tue, 1 Aug 2000 17:58:25 +0000 (17:58 +0000)
endpt.c

diff --git a/endpt.c b/endpt.c
index b9a1d4d..19336d6 100644 (file)
--- a/endpt.c
+++ b/endpt.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: endpt.c,v 1.2 1999/10/22 22:46:17 mdw Exp $
+ * $Id: endpt.c,v 1.3 2000/08/01 17:58:25 mdw Exp $
  *
  * Generic endpoint abstraction
  *
@@ -29,6 +29,9 @@
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: endpt.c,v $
+ * Revision 1.3  2000/08/01 17:58:25  mdw
+ * Include missing <mLib/alloc.h> header.
+ *
  * Revision 1.2  1999/10/22 22:46:17  mdw
  * When a non-file endpoint is attached to a file, keep the file endpoint
  * open until the nonfile is done.  This stops socket sources from
@@ -52,6 +55,8 @@
 #include <unistd.h>
 #include <fcntl.h>
 
+#include <mLib/alloc.h>
+
 #include "chan.h"
 #include "endpt.h"