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