Save a few more bytes by making memcpy memmove

This commit is contained in:
Stefan `Sec` Zehl 2011-08-05 15:17:36 +02:00
parent f5fdb1d5dd
commit b09db6ef9a
1 changed files with 3 additions and 0 deletions

View File

@ -61,5 +61,8 @@ typedef unsigned char byte_t;
#define NULL ((void *) 0)
#endif
// Save some space
#define memcpy memmove
#endif