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