]> pd.if.org Git - pdclib/blob - stdarg.h
Second try. Freestanding only, for now.
[pdclib] / stdarg.h
1 #ifndef _PDCLIB_STDARG_H
2 #define _PDCLIB_STDARG_H _PDCLIB_STDARG_H
3
4 /* $Id$ */
5
6 /* 7.15 Variable arguments <stdarg.h> 
7
8    This file is part of the Public Domain C Library (PDCLib).
9    Permission is granted to use, modify, and / or redistribute at will.
10 */
11
12 #ifndef _PDCLIB_DEFS_H
13 #define _PDCLIB_DEFS_H _PDCLIB_DEFS_H
14 #include <_PDCLIB_defs.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