/* Variable arguments <stdarg.h>12This file is part of the Public Domain C Library (PDCLib).3Permission is granted to use, modify, and / or redistribute at will.4*/56#ifndef _PDCLIB_STDARG_H7#define _PDCLIB_STDARG_H _PDCLIB_STDARG_H8#include "_PDCLIB_aux.h"9#include "_PDCLIB_config.h"1011#ifdef __cplusplus12extern "C" {13#endif1415typedef _PDCLIB_va_list va_list;1617#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 )2122#ifdef __cplusplus23}24#endif2526#endif272829