From add9fa0beeeee4f156e1d37e0fe9f518d23ba3cb Mon Sep 17 00:00:00 2001 From: kichik Date: Thu, 5 May 2005 20:25:46 +0000 Subject: [PATCH] SCons/Config/gnu now takes care of adding memcpy if it's needed git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4008 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/exehead/util.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/Source/exehead/util.c b/Source/exehead/util.c index 380daeb6..5c7a7ea9 100644 --- a/Source/exehead/util.c +++ b/Source/exehead/util.c @@ -334,20 +334,6 @@ void NSISCALL mini_memcpy(void *out, const void *in, int len) } } -#ifdef __GNUC__ -void *memcpy(void *out, const void *in, size_t len) -{ - char *c_out=(char*)out; - char *c_in=(char *)in; - while (len-- > 0) - { - *c_out++=*c_in++; - } - return out; -} -#endif - - HANDLE NSISCALL myOpenFile(const char *fn, DWORD da, DWORD cd) { int attr = GetFileAttributes(fn);