We have memset() and memcpy() in the kernel now, so we don't need to
#define them to bzero and bcopy. Spotted by: FlexeLint
This commit is contained in:
parent
4141b621ac
commit
962414a120
@ -46,11 +46,6 @@ __FBSDID("$FreeBSD$");
|
||||
|
||||
static void MD5Transform(u_int32_t [4], const unsigned char [64]);
|
||||
|
||||
#ifdef _KERNEL
|
||||
#define memset(x,y,z) bzero(x,z);
|
||||
#define memcpy(x,y,z) bcopy(y, x, z)
|
||||
#endif
|
||||
|
||||
#if (BYTE_ORDER == LITTLE_ENDIAN)
|
||||
#define Encode memcpy
|
||||
#define Decode memcpy
|
||||
|
Loading…
x
Reference in New Issue
Block a user