From a17528cd0d182ae6ca3885c306c76d1558911cb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20B=C3=A9ron?= Date: Fri, 4 Nov 2005 11:14:22 +0000 Subject: [PATCH] Fix warning about memmove re#definition. --- include/wine/port.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/wine/port.h b/include/wine/port.h index 0cf8274d166..238c6965ab7 100644 --- a/include/wine/port.h +++ b/include/wine/port.h @@ -456,6 +456,7 @@ extern int interlocked_xchg_add( int *dest, int incr ); #define interlocked_xchg_add __WINE_NOT_PORTABLE(interlocked_xchg_add) #define lstat __WINE_NOT_PORTABLE(lstat) #define memcpy_unaligned __WINE_NOT_PORTABLE(memcpy_unaligned) +#undef memmove #define memmove __WINE_NOT_PORTABLE(memmove) #define pread __WINE_NOT_PORTABLE(pread) #define pwrite __WINE_NOT_PORTABLE(pwrite)