include: Add else cases for __cdecl.

Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
André Hentschel 2020-06-17 15:09:34 +02:00 committed by Alexandre Julliard
parent 2cbab8a0a2
commit 557b81116d
2 changed files with 3 additions and 1 deletions

View File

@ -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 */

View File

@ -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 */