From 7311a3ea25980c98307156bb16cf9a31b9228473 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Sat, 4 Apr 2020 23:59:51 +0900 Subject: mkxp fixes --- jni/iconv/srclib/memmove.c | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 jni/iconv/srclib/memmove.c (limited to 'jni/iconv/srclib/memmove.c') diff --git a/jni/iconv/srclib/memmove.c b/jni/iconv/srclib/memmove.c deleted file mode 100644 index c5ff8b5..0000000 --- a/jni/iconv/srclib/memmove.c +++ /dev/null @@ -1,26 +0,0 @@ -/* memmove.c -- copy memory. - Copy LENGTH bytes from SOURCE to DEST. Does not null-terminate. - In the public domain. - By David MacKenzie . */ - -#include - -#include - -void * -memmove (void *dest0, void const *source0, size_t length) -{ - char *dest = dest0; - char const *source = source0; - if (source < dest) - /* Moving from low mem to hi mem; start at end. */ - for (source += length, dest += length; length; --length) - *--dest = *--source; - else if (source != dest) - { - /* Moving from hi mem to low mem; start at beginning. */ - for (; length; --length) - *dest++ = *source++; - } - return dest0; -} -- cgit v1.2.3