Revert "wine/asm.h: Quote stdcall decored symbols."

This reverts commit bdcc54c19d.
It breaks with older binutils.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2019-08-27 10:12:29 +02:00
parent 480bae108c
commit a0190cc27c
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@
#endif
#if defined(_WIN32) && defined(__i386__)
# define __ASM_STDCALL(name,args) "\"" __ASM_NAME(name) "@" #args "\""
# define __ASM_STDCALL(name,args) __ASM_NAME(name) "@" #args
#else
# define __ASM_STDCALL(name,args) __ASM_NAME(name)
#endif