Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /*      memmove()                                       Author: Kees J. Bot */
  2. /*                                                              2 Jan 1994 */
  3.  
  4. /* void *memmove(void *s1, const void *s2, size_t n) */
  5. /*      Copy a chunk of memory.  Handle overlap. */
  6. /* */
  7. #include "asm.h"
  8.  
  9. ENTRY(memmove)
  10.         jmp     _C_LABEL(_memmove)      /* Call common code */
  11.