From: Michihiro NAKAJIMA Date: Mon, 16 May 2011 03:38:55 +0000 (-0400) Subject: Remove unused wmemcpy definition. X-Git-Tag: v3.0.0a~350 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfc07c7672eff6ce51947985a07664a6e2c5540b;p=thirdparty%2Flibarchive.git Remove unused wmemcpy definition. SVN-Revision: 3337 --- diff --git a/libarchive/archive_entry.c b/libarchive/archive_entry.c index 7474a33c9..7bf03271b 100644 --- a/libarchive/archive_entry.c +++ b/libarchive/archive_entry.c @@ -140,9 +140,6 @@ static size_t wcslen(const wchar_t *s) /* Good enough for simple equality testing, but not for sorting. */ #define wmemcmp(a,b,i) memcmp((a), (b), (i) * sizeof(wchar_t)) #endif -#ifndef HAVE_WMEMCPY -#define wmemcpy(a,b,i) (wchar_t *)memcpy((a), (b), (i) * sizeof(wchar_t)) -#endif /**************************************************************************** *