From af4412fd5a0bc68e3b2587da10a0e92a9f1b55c6 Mon Sep 17 00:00:00 2001 From: Richard Basch Date: Fri, 24 Sep 1993 12:17:38 +0000 Subject: Use _BZERO,_BCOPY,_BCMP macros in lieu of the functions. These are declared in to be either the BSD routine or the ANSI routines, depending on the system type. --- lib/ZFmtRawLst.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/ZFmtRawLst.c') diff --git a/lib/ZFmtRawLst.c b/lib/ZFmtRawLst.c index 7ac49e3..eef764f 100644 --- a/lib/ZFmtRawLst.c +++ b/lib/ZFmtRawLst.c @@ -45,13 +45,13 @@ Code_t ZFormatRawNoticeList(notice, list, nitems, buffer, ret_len) if (!(*buffer = (char *) malloc((unsigned) *ret_len))) return (ENOMEM); - bcopy(header, *buffer, hdrlen); + _BCOPY(header, *buffer, hdrlen); ptr = *buffer+hdrlen; for (;nitems;nitems--, list++) { i = strlen(*list)+1; - bcopy(*list, ptr, i); + _BCOPY(*list, ptr, i); ptr += i; } -- cgit v1.2.3