mirror of
https://github.com/thomasxm/BOAZ_beta
synced 2026-06-06 16:54:29 +00:00
30 lines
554 B
C
Executable File
30 lines
554 B
C
Executable File
//
|
|
// stdarg.h
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// The C Standard Library <stdarg.h> header.
|
|
//
|
|
#pragma once
|
|
#define _INC_STDARG
|
|
|
|
#include <vcruntime.h>
|
|
|
|
#pragma warning(push)
|
|
#pragma warning(disable: _VCRUNTIME_DISABLED_WARNINGS)
|
|
|
|
_CRT_BEGIN_C_HEADER
|
|
|
|
|
|
|
|
#define va_start __crt_va_start
|
|
#define va_arg __crt_va_arg
|
|
#define va_end __crt_va_end
|
|
#define va_copy(destination, source) ((destination) = (source))
|
|
|
|
|
|
|
|
_CRT_END_C_HEADER
|
|
|
|
#pragma warning(pop) // _VCRUNTIME_DISABLED_WARNINGS
|