X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=includes%2Fstdarg.h;h=202d37274a5070521b41fa153b9222e3d4b20d1a;hp=e75cd55c68b8a61cd4e730ed3a317747c83a58ac;hb=b41576197133c1211d6ec353faf93f505f573b8a;hpb=93ca2d813f86c52bb9bece81ca564d4831bff9e5 diff --git a/includes/stdarg.h b/includes/stdarg.h index e75cd55..202d372 100644 --- a/includes/stdarg.h +++ b/includes/stdarg.h @@ -8,11 +8,9 @@ #ifndef _PDCLIB_STDARG_H #define _PDCLIB_STDARG_H _PDCLIB_STDARG_H - -#ifndef _PDCLIB_CONFIG_H -#define _PDCLIB_CONFIG_H _PDCLIB_CONFIG_H +#include <_PDCLIB_aux.h> #include <_PDCLIB_config.h> -#endif +_PDCLIB_BEGIN_EXTERN_C typedef _PDCLIB_va_list va_list; @@ -21,5 +19,6 @@ typedef _PDCLIB_va_list va_list; #define va_end( ap ) _PDCLIB_va_end( ap ) #define va_start( ap, parmN ) _PDCLIB_va_start( ap, parmN ) +_PDCLIB_END_EXTERN_C #endif