X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fstdarg.h;h=1ebf3fba289823ce3da1f37cad3e0b130ce835ee;hb=be738e08ec9ba2498d81153bee1de9b8af7e764c;hp=7558131fbb28e3404a258f1e3eb23ae3fd93a0d6;hpb=4c805021b487dff9bfc6341c998ba99636416ae7;p=pdclib diff --git a/includes/stdarg.h b/includes/stdarg.h index 7558131..1ebf3fb 100644 --- a/includes/stdarg.h +++ b/includes/stdarg.h @@ -1,8 +1,4 @@ -/* $Id$ */ - -/* Release $Name$ */ - -/* 7.15 Variable arguments +/* Variable arguments This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. @@ -10,10 +6,11 @@ #ifndef _PDCLIB_STDARG_H #define _PDCLIB_STDARG_H _PDCLIB_STDARG_H +#include "_PDCLIB_aux.h" +#include "_PDCLIB_config.h" -#ifndef _PDCLIB_CONFIG_H -#define _PDCLIB_CONFIG_H _PDCLIB_CONFIG_H -#include <_PDCLIB_config.h> +#ifdef __cplusplus +extern "C" { #endif typedef _PDCLIB_va_list va_list; @@ -23,5 +20,8 @@ typedef _PDCLIB_va_list va_list; #define va_end( ap ) _PDCLIB_va_end( ap ) #define va_start( ap, parmN ) _PDCLIB_va_start( ap, parmN ) +#ifdef __cplusplus +} #endif +#endif