Hi,
Anything wrong with this one?
Jon
=======================
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
__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.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
+