From 2ef7b73fd50bb4fef426fcc70e80eec1569b0601 Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Tue, 27 Jun 2000 23:13:26 +0000 Subject: [PATCH] Missing #include "assert_p.h" --- lib/lwres/gethost.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/lwres/gethost.c b/lib/lwres/gethost.c index 41cd12cd82..07893204bc 100644 --- a/lib/lwres/gethost.c +++ b/lib/lwres/gethost.c @@ -15,7 +15,7 @@ * SOFTWARE. */ -/* $Id: gethost.c,v 1.19 2000/06/27 00:24:12 bwelling Exp $ */ +/* $Id: gethost.c,v 1.20 2000/06/27 23:13:26 bwelling Exp $ */ #include @@ -27,6 +27,8 @@ #include +#include "assert_p.h" + #define LWRES_ALIGNBYTES (sizeof(char *) - 1) #define LWRES_ALIGN(p) \ (((unsigned long)(p) + LWRES_ALIGNBYTES) &~ LWRES_ALIGNBYTES)