repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Uninitialized vector entry?
[minix3.git]
/
lib
/
other
/
bcopy.c
blob
e8f4f7a07406f47199f26bc57d3e1e659b485bb9
1
#include <lib.h>
2
/* bcopy - Berklix equivalent of memcpy */
3
4
#include <string.h>
5
6
void
bcopy
(
src
,
dst
,
length
)
7
_CONST
void
*
src
;
8
void
*
dst
;
9
size_t
length
;
10
{
11
(
void
)
memcpy
(
dst
,
src
,
length
);
12
}