[CRT] vadefs.h: Fix name of __crt_va_*

This is to be compatible with native CRT headers.
This commit is contained in:
Timo Kreuzer 2024-05-11 09:02:03 +03:00
parent 325d74c30f
commit 439e67d1d8
2 changed files with 19 additions and 19 deletions

View file

@ -41,13 +41,13 @@ Boston, MA 02110-1301, USA. */
#endif
#ifndef va_start
#define va_start _crt_va_start
#define va_start __crt_va_start
#endif
#ifndef va_arg
#define va_arg _crt_va_arg
#define va_arg __crt_va_arg
#endif
#ifndef va_end
#define va_end _crt_va_end
#define va_end __crt_va_end
#endif
#endif