(svn r624) Merge r377 to trunk:

Remove the memmove special case for MSVC
According to the MSDN it was just plain wrong and memmove was directly used in some places anyway
This commit is contained in:
tron
2004-11-15 10:31:48 +00:00
parent 01e88bb61d
commit 57c472e093
5 changed files with 8 additions and 14 deletions

View File

@@ -95,12 +95,6 @@ typedef unsigned int uint32;
typedef unsigned int uint;
#endif
#if defined(_MSC_VER)
#define memcpy_overlapping memcpy
#else
#define memcpy_overlapping memmove
#endif
#ifndef __BEOS__
typedef signed char int8;
typedef signed short int16;