]> pd.if.org Git - pdclib/blob - includes/stdarg.h
cc63123ca5d22076b8d7c363c0539ccffc8ad6cd
[pdclib] / includes / stdarg.h
1 /* Variable arguments <stdarg.h>
2
3    This file is part of the Public Domain C Library (PDCLib).
4    Permission is granted to use, modify, and / or redistribute at will.
5 */
6
7 #ifndef _PDCLIB_STDARG_H
8 #define _PDCLIB_STDARG_H _PDCLIB_STDARG_H
9 #include <_PDCLIB_aux.h>
10 #include <_PDCLIB_config.h>
11
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15
16 typedef _PDCLIB_va_list va_list;
17
18 #define va_arg( ap, type )    _PDCLIB_va_arg( ap, type )
19 #define va_copy( dest, src )  _PDCLIB_va_copy( dest, src )
20 #define va_end( ap )          _PDCLIB_va_end( ap )
21 #define va_start( ap, parmN ) _PDCLIB_va_start( ap, parmN )
22
23 #ifdef __cplusplus
24 }
25 #endif
26
27 #endif