source: trunk/minix/lib/other/bcopy.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 195 bytes
Line 
1#include <lib.h>
2/* bcopy - Berklix equivalent of memcpy */
3
4#include <string.h>
5
6void bcopy(src, dst, length)
7_CONST void *src;
8void *dst;
9size_t length;
10{
11 (void) memcpy(dst, src, length);
12}
Note: See TracBrowser for help on using the repository browser.