X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2F_PDCLIB%2Fstdarg.c;h=9e43be6a10bebda6bcb65c4489f5cfd05899abf4;hp=fb3f4d636cd2f8560545d6ca725946638515b5a0;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=a7a8d2f1c85c2d7760d4d3479e90466cc3a81b04 diff --git a/functions/_PDCLIB/stdarg.c b/functions/_PDCLIB/stdarg.c index fb3f4d6..9e43be6 100644 --- a/functions/_PDCLIB/stdarg.c +++ b/functions/_PDCLIB/stdarg.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* stdarg This file is part of the Public Domain C Library (PDCLib). @@ -9,8 +7,9 @@ #include #include #include +#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