include: Add __ASM_LOCAL_LABEL macro.

This commit is contained in:
Brendan Shanks 2023-02-14 21:12:55 -08:00 committed by Alexandre Julliard
parent e5c540c59b
commit 1362b0c04f

View file

@ -27,6 +27,12 @@
# define __ASM_NAME(name) name
#endif
#if defined(__APPLE__)
# define __ASM_LOCAL_LABEL(label) "L" label
#else
# define __ASM_LOCAL_LABEL(label) ".L" label
#endif
#if defined(__WINE_PE_BUILD) && defined(__i386__)
# define __ASM_STDCALL(name,args) "_" name "@" #args
# define __ASM_FASTCALL(name,args) "@" name "@" #args