X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/e5568f75972dfc723778653c11cb6b4dc825716a..0c530ab8987f0ae6a1a3d9284f40182b88852816:/bsd/dev/i386/memmove.c diff --git a/bsd/dev/i386/memmove.c b/bsd/dev/i386/memmove.c index 12b0e2070..5ef7f1291 100644 --- a/bsd/dev/i386/memmove.c +++ b/bsd/dev/i386/memmove.c @@ -34,7 +34,7 @@ * */ - +#include #if 0 void *memcpy(void *dst, const void *src, unsigned int ulen) @@ -43,7 +43,9 @@ void *memcpy(void *dst, const void *src, unsigned int ulen) return dst; } #endif /* 0 */ -void *memmove(void *dst, const void *src, unsigned int ulen) + +void * +memmove(void *dst, const void *src, size_t ulen) { bcopy(src, dst, ulen); return dst;