]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/dev/ppc/memmove.c
xnu-792.tar.gz
[apple/xnu.git] / bsd / dev / ppc / memmove.c
index e36599aa8bb55ba170cf230b0a173d346d7d19c9..c9a091bb176f89f97d5425fec48f08d7f18a6044 100644 (file)
@@ -36,11 +36,13 @@ void *memcpy(void *dst, const void *src, unsigned int ulen)
        bcopy(src, dst, ulen);
        return dst;
 }
-#endif /* 0 */
+
 void *memmove(void *dst, const void *src, unsigned int ulen)
 {
        bcopy(src, dst, ulen);
        return dst;
 }
 
+#endif /* 0 */
+