Uninitialized vector entry?
[minix3.git] / lib / other / bcopy.c
blobe8f4f7a07406f47199f26bc57d3e1e659b485bb9
1 #include <lib.h>
2 /* bcopy - Berklix equivalent of memcpy */
4 #include <string.h>
6 void bcopy(src, dst, length)
7 _CONST void *src;
8 void *dst;
9 size_t length;
11 (void) memcpy(dst, src, length);