Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: The Source of All Evil <source@NetBSD.ORG>
List: source-changes
Date: 05/16/1996 20:40:03
jtc
Thu May 16 20:32:25 EDT 1996
Update of /a/cvsroot/src/lib/libc/rpc
In directory pain.lcs.mit.edu:/a/tmp/cvs-serv16367

Modified Files:
	svc.c 
Log Message:
Use memset instead of bzero to clear xports array.

To be strictly conforming, we should iterate through the array and set
each pointer to NULL.  But memset is faster, and can be inlined by the
compiler.  If we ever encounter a machine where a NULL ptr != all bits
zero, we'll have to handle this differently.