mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:13:03 +00:00
[CRT] vadefs.h: Fix name of __crt_va_*
This is to be compatible with native CRT headers.
This commit is contained in:
parent
325d74c30f
commit
439e67d1d8
2 changed files with 19 additions and 19 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue