math: fix two fma issues (only affects non-nearest rounding mode, x86)
[musl] / src / string / mempcpy.c
1 #include <string.h>
2
3 void *mempcpy(void *dest, const void *src, size_t n)
4 {
5         return (char *)memcpy(dest, src, n) + n;
6 }