]> pd.if.org Git - pdclib.old/blobdiff - includes/stdarg.h
Modify various POSIX platform files so you can build on top of glibc for testing
[pdclib.old] / includes / stdarg.h
index 7558131fbb28e3404a258f1e3eb23ae3fd93a0d6..202d37274a5070521b41fa153b9222e3d4b20d1a 100644 (file)
@@ -1,7 +1,5 @@
 /* $Id$ */
 
-/* Release $Name$ */
-
 /* 7.15 Variable arguments <stdarg.h> 
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -10,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;
 
@@ -23,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