X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fvfprintf.c;h=9be5b2d7f29b1cf89138c4036826984ea080965e;hb=06630c64aa2ac5b8ec55c3c0509e69da4d81a22b;hp=f9562d2e137d04e37ca3fe384334f1d87674f369;hpb=0a419d48138f1411d6e3e50a367b9ece5a2cf893;p=pdclib diff --git a/functions/stdio/vfprintf.c b/functions/stdio/vfprintf.c index f9562d2..9be5b2d 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 ) { @@ -37,7 +37,7 @@ int vfprintf_unlocked( FILE * _PDCLIB_restrict stream, if ( ( *format != '%' ) || ( ( rc = _PDCLIB_print( format, &status ) ) == format ) ) { /* No conversion specifier, print verbatim */ - putc( *(format++), stream ); + _PDCLIB_putc_unlocked( *(format++), stream ); status.i++; } else @@ -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; }