Disable memcpy/memmove optimazation in simulat0r, it collides with the efforts not to interfere with libc

This commit is contained in:
bernd 2011-08-06 16:41:58 +02:00
parent a76eab9218
commit b99031694a
1 changed files with 2 additions and 0 deletions

View File

@ -62,7 +62,9 @@ typedef unsigned char byte_t;
#endif
// Save some space
#ifndef SIMULATOR
#define memcpy memmove
#endif
#endif