]> pd.if.org Git - pdclib/blobdiff - functions/_PDCLIB/stdarg.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / _PDCLIB / stdarg.c
index fb3f4d636cd2f8560545d6ca725946638515b5a0..9e43be6a10bebda6bcb65c4489f5cfd05899abf4 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* stdarg
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -9,8 +7,9 @@
 #include <stdarg.h>
 #include <limits.h>
 #include <float.h>
+#ifdef TEST
 
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 typedef int (*intfunc_t)( void );
 
@@ -111,3 +110,4 @@ int main( void )
     test( TAG_INTPTR, &x, TAG_LDBLPTR, &d, TAG_FUNCPTR, dummy, TAG_END );
     return TEST_RESULTS;
 }
+#endif