X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2F_PDCLIB%2Fstdarg.c;h=7ad1087457da409bd2a9f487839131943c3dabe8;hb=93e46d21f99880a1d847369ea68edf3a3a44b989;hp=fb3f4d636cd2f8560545d6ca725946638515b5a0;hpb=a7a8d2f1c85c2d7760d4d3479e90466cc3a81b04;p=pdclib diff --git a/functions/_PDCLIB/stdarg.c b/functions/_PDCLIB/stdarg.c old mode 100644 new mode 100755 index fb3f4d6..7ad1087 --- 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). @@ -10,7 +8,9 @@ #include #include -#include <_PDCLIB_test.h> +#ifdef TEST + +#include "_PDCLIB_test.h" typedef int (*intfunc_t)( void ); @@ -111,3 +111,5 @@ int main( void ) test( TAG_INTPTR, &x, TAG_LDBLPTR, &d, TAG_FUNCPTR, dummy, TAG_END ); return TEST_RESULTS; } + +#endif