Subject: Re: CVS commit: syssrc/sys/sys
To: None <christos@zoulas.com, source-changes@netbsd.org>
From: None <eeh@netbsd.org>
List: source-changes
Date: 07/06/2001 15:46:14
	My approach would be to change the code to use memmove/memcpy/memset
	and provide macros for those in the systems that need it.

	I don't think any system will need it since gcc provides some of them.

gcc only generates those for machines that have string move instructions.
For others it calls memmove/memcpy/memset in most circumstance.

Eduardo