From: Gerald Pfeifer gerald@pfeifer.com
After commit b337c5b1a1757b2abbc90a7c6955d64242861ab9 builds on FreeBSD see 115 instances of
include/windef.h:60: warning: "__fastcall" redefined
which comes from <stdio.h> including <sys/cdefs.h> which in turns has
#define __fastcall __attribute__((__fastcall__))
Simply #undef-ining __fastcall like we do for some other cases already addresses this. --- include/windef.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/windef.h b/include/windef.h index b5f8f3d0b4c..86171ce2333 100644 --- a/include/windef.h +++ b/include/windef.h @@ -59,6 +59,7 @@ extern "C" { #ifdef WINE_UNIX_LIB # define __stdcall # define __cdecl +# undef __fastcall # define __fastcall #else # undef __stdcall