source:
trunk/minix/lib/i86/string/memmove.s@
10
Last change on this file since 10 was 9, checked in by , 14 years ago | |
---|---|
File size: 277 bytes |
Rev | Line | |
---|---|---|
[9] | 1 | ! memmove() Author: Kees J. Bot |
2 | ! 27 Jan 1994 | |
3 | .sect .text; .sect .rom; .sect .data; .sect .bss | |
4 | ||
5 | ! void *memmove(void *s1, const void *s2, size_t n) | |
6 | ! Copy a chunk of memory. Handle overlap. | |
7 | ! | |
8 | .sect .text | |
9 | .define _memmove | |
10 | _memmove: | |
11 | jmp __memmove ! Call common code |
Note:
See TracBrowser
for help on using the repository browser.