1 /***
2 *stdarg.h - defines ANSI-style macros for variable argument functions
3 *
4 *           Copyright (c) Microsoft Corporation. All rights reserved.
5 *
6 *Purpose:
7 *           This file defines ANSI-style macros for accessing arguments
8 *           of functions which take a variable number of arguments.
9 *           [ANSI]
10 *
11 *           [Public]
12 *
13 ****/
14
15 #if        _MSC_VER > 1000
16 #pragma once
17 #endif
18
19 #ifndef _INC_STDARG
20 #define _INC_STDARG
21
22 #if        !defined(_WIN32)
23 #error ERROR: Only Win32 target supported!
Lines 24 ... 27 are skipped.
28
29 #define va_start _crt_va_start
30 #define va_arg _crt_va_arg
31 #define va_end _crt_va_end
32
33 #endif  /* _INC_STDARG */
34