3 /* 7.15 Variable arguments <stdarg.h>
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
9 #ifndef _PDCLIB_STDARG_H
10 #define _PDCLIB_STDARG_H _PDCLIB_STDARG_H
11 #include <_PDCLIB_aux.h>
12 #include <_PDCLIB_config.h>
13 _PDCLIB_BEGIN_EXTERN_C
15 typedef _PDCLIB_va_list va_list;
17 #define va_arg( ap, type ) _PDCLIB_va_arg( ap, type )
18 #define va_copy( dest, src ) _PDCLIB_va_copy( dest, src )
19 #define va_end( ap ) _PDCLIB_va_end( ap )
20 #define va_start( ap, parmN ) _PDCLIB_va_start( ap, parmN )