]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/dev/i386/memmove.c
xnu-792.25.20.tar.gz
[apple/xnu.git] / bsd / dev / i386 / memmove.c
index 12b0e2070cd7c884448242650dd6df4b47dc45e5..5ef7f1291bb18390925a8ee325ec73b5b8b4da80 100644 (file)
@@ -34,7 +34,7 @@
  *
  */
 
-
+#include <string.h>
 
 #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;