summaryrefslogtreecommitdiff
path: root/arch/x86_64/lib/memmove.c
blob: e93d5255fdc96e151af1d1a557100077a7b549a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Normally compiler builtins are used, but sometimes the compiler calls out
   of line code. Based on asm-i386/string.h.
 */
#define _STRING_C
#include <linux/string.h>

#undef memmove
void *memmove(void * dest,const void *src,size_t count)
{
	if (dest < src) { 
		__inline_memcpy(dest,src,count);
	} else {
		char *p = (char *) dest + count;
		char *s = (char *) src + count;
		while (count--)
			*--p = *--s;
	}
	return dest;
}