source:
trunk/minix/lib/other/bcopy.c@
10
| Last change on this file since 10 was 9, checked in by , 15 years ago | |
|---|---|
| File size: 195 bytes | |
| Line | |
|---|---|
| 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 | } |
Note:
See TracBrowser
for help on using the repository browser.