From f6407f9a0b890bebbfd5f738d9c4aef3d3315fe9 Mon Sep 17 00:00:00 2001 From: Michael Graff Date: Tue, 2 May 2000 16:36:22 +0000 Subject: [PATCH] add print.h and string.h to files that need them --- lib/dns/dispatch.c | 1 + lib/dns/rdata.c | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/dns/dispatch.c b/lib/dns/dispatch.c index 9d6907b74b..585f58d52e 100644 --- a/lib/dns/dispatch.c +++ b/lib/dns/dispatch.c @@ -32,6 +32,7 @@ #include #include #include +#include #include #include diff --git a/lib/dns/rdata.c b/lib/dns/rdata.c index 0ad1831506..a712cedbef 100644 --- a/lib/dns/rdata.c +++ b/lib/dns/rdata.c @@ -15,13 +15,14 @@ * SOFTWARE. */ -/* $Id: rdata.c,v 1.82 2000/05/02 05:19:47 marka Exp $ */ +/* $Id: rdata.c,v 1.83 2000/05/02 16:36:22 explorer Exp $ */ #include #include #include #include +#include #include #include @@ -128,7 +129,7 @@ mem_maybedup(isc_mem_t *mctx, void *source, size_t length) { new = isc_mem_allocate(mctx, length); if (new != NULL) memcpy(new, source, length); - + return (new); }