summaryrefslogtreecommitdiff
path: root/libc/string/generic/mempcpy.c
blob: 4eb6db0993ec31dddf403f80e5ba0b6626eef0d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Copy memory to memory until the specified number of bytes
   has been copied, return pointer to following byte.
   Overlap is NOT handled correctly.
*/

/* Ditch the glibc version and just wrap memcpy. */

#include <string.h>

#undef mempcpy

void attribute_hidden *__libc_mempcpy (void *dstpp, const void *srcpp, size_t len)
{
  memcpy(dstpp, srcpp, len);
  return (void *)(((char *)dstpp) + len);
}

strong_alias(__libc_mempcpy, __mempcpy)
strong_alias(__mempcpy, mempcpy)