ae75f9d4e5
- 755 -> 644
12 lines
195 B
C
12 lines
195 B
C
#include <lib.h>
|
|
/* bcopy - Berklix equivalent of memcpy */
|
|
|
|
#include <string.h>
|
|
|
|
void bcopy(src, dst, length)
|
|
_CONST void *src;
|
|
void *dst;
|
|
size_t length;
|
|
{
|
|
(void) memcpy(dst, src, length);
|
|
}
|