]> pd.if.org Git - pdclib/blobdiff - includes/stdarg.h
Removed SVN keyword tags.
[pdclib] / includes / stdarg.h
index e75cd55c68b8a61cd4e730ed3a317747c83a58ac..bbce55ab4360613183143cb3ba4895abd198c81f 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* 7.15 Variable arguments <stdarg.h> 
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -8,11 +6,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 +17,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