Commit 557b8111 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

include: Add else cases for __cdecl.

parent 2cbab8a0
......@@ -100,6 +100,8 @@
# define __cdecl __attribute__((pcs("aapcs-vfp")))
# elif defined(__aarch64__) && defined (__GNUC__)
# define __cdecl __attribute__((ms_abi))
# else
# define __cdecl
# endif
#endif /* __cdecl */
......
......@@ -93,7 +93,7 @@ extern "C" {
# define __cdecl __attribute__((pcs("aapcs-vfp")))
# elif defined(__aarch64__) && defined (__GNUC__)
# define __cdecl __attribute__((ms_abi))
# elif !defined(_MSC_VER)
# else
# define __cdecl
# endif
#endif /* __cdecl */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment