We have mem{cpy,cmp,set} functions in the kernel, don't #define them to

b{copy,zero,cmp} functions anymore.

Spotted by:	FlexeLint.
This commit is contained in:
Poul-Henning Kamp 2002-10-20 22:35:20 +00:00
parent 962414a120
commit 33f9080f82
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=105579

View File

@ -57,9 +57,6 @@
#include <sys/time.h>
#include <sys/systm.h>
# define HAVE_MEMCPY
# define memcpy(d, s, n) bcopy((s), (d), (n))
# define memset(d, v, n) bzero((d), (n))
# define memcmp bcmp
#else
#if defined(__KERNEL__)