X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fvfprintf.c;h=7dd7f2dfe1e6b4855c99b2217e063fce91ebf1da;hb=0711226145f12c37217681b57944860bdeb6ace0;hp=b8e91943b2449057cb4e144f8546d4fbe2882191;hpb=c45b8c52827f1ea733cf211045d8d5b7bedcc970;p=pdclib diff --git a/functions/stdio/vfprintf.c b/functions/stdio/vfprintf.c index b8e9194..7dd7f2d 100644 --- a/functions/stdio/vfprintf.c +++ b/functions/stdio/vfprintf.c @@ -14,7 +14,7 @@ #ifndef REGTEST #include <_PDCLIB_io.h> -int vfprintf_unlocked( FILE * _PDCLIB_restrict stream, +int _PDCLIB_vfprintf_unlocked( FILE * _PDCLIB_restrict stream, const char * _PDCLIB_restrict format, va_list arg ) { @@ -54,9 +54,9 @@ int vfprintf( FILE * _PDCLIB_restrict stream, const char * _PDCLIB_restrict format, va_list arg ) { - flockfile( stream ); - int r = vfprintf_unlocked( stream, format, arg ); - funlockfile( stream ); + _PDCLIB_flockfile( stream ); + int r = _PDCLIB_vfprintf_unlocked( stream, format, arg ); + _PDCLIB_funlockfile( stream ); return r; } @@ -65,7 +65,7 @@ int vfprintf( FILE * _PDCLIB_restrict stream, #ifdef TEST #define _PDCLIB_FILEID "stdio/vfprintf.c" #define _PDCLIB_FILEIO - +#include #include <_PDCLIB_test.h> static int testprintf( FILE * stream, const char * format, ... )