Hi,
License: X11
ChangeLog:
Jon Griffiths <jon_p_griffiths@yahoo.com>
+libs/port/memcpy_unaligned.c
msvc doesn't like multiple definitions of the same function
=====
"Don't wait for the seas to part, or messiahs to come;
Don't you sit around and waste this chance..." - Live
jon_p_griffiths@yahoo.com
__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
--- wine/libs/port/memcpy_unaligned.c Thu Mar 20 23:44:36 2003
+++ wine-develop/libs/port/memcpy_unaligned.c Sat Jul 12 18:00:39 2003
@@ -21,7 +21,10 @@
#include "config.h"
#include "wine/port.h"
+#ifndef _MSC_VER
void *memcpy_unaligned( void *dst, const void *src, size_t size )
{
return memcpy( dst, src, size );
}
+#endif
+