X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=functions%2Fstdio%2Fvfprintf.c;h=9be5b2d7f29b1cf89138c4036826984ea080965e;hp=b8e91943b2449057cb4e144f8546d4fbe2882191;hb=b5b6c4a890795ea76f9b92b817b0a83c6bb4862c;hpb=aa8b812cace09efe5e21f191761a5258b266b87b diff --git a/functions/stdio/vfprintf.c b/functions/stdio/vfprintf.c index b8e9194..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 ) { @@ -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; }