X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fvfprintf.c;h=44c86358783e6b13b3ee13d6ef39e8c71c8add0f;hb=f0c4a925a835e6efd444b2de5406219551dc65d4;hp=7ab3167499a8d2f57360d01a1b3a458abf4b477d;hpb=82cd4468d130cac87062bc6e4fc5bf0f593785d3;p=pdclib.old diff --git a/functions/stdio/vfprintf.c b/functions/stdio/vfprintf.c index 7ab3167..44c8635 100644 --- a/functions/stdio/vfprintf.c +++ b/functions/stdio/vfprintf.c @@ -69,10 +69,9 @@ static int testprintf( FILE * stream, const char * format, ... ) int main( void ) { FILE * target; - TESTCASE( ( target = fopen( testfile, "wb+" ) ) != NULL ); + TESTCASE( ( target = tmpfile() ) != NULL ); #include "printf_testcases.incl" TESTCASE( fclose( target ) == 0 ); - TESTCASE( remove( testfile ) == 0 ); return TEST_RESULTS; }