5 /* 7.15 Variable arguments <stdarg.h>
7 This file is part of the Public Domain C Library (PDCLib).
8 Permission is granted to use, modify, and / or redistribute at will.
11 #ifndef _PDCLIB_STDARG_H
12 #define _PDCLIB_STDARG_H _PDCLIB_STDARG_H
14 #ifndef _PDCLIB_CONFIG_H
15 #define _PDCLIB_CONFIG_H _PDCLIB_CONFIG_H
16 #include <_PDCLIB_config.h>
19 typedef _PDCLIB_va_list va_list;
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 )