]> pd.if.org Git - pdclib.old/blobdiff - functions/stdio/vfprintf.c
Namespace cleanliness: Rename all ***_unlocked functions to _PDCLIB_***_unlocked.
[pdclib.old] / functions / stdio / vfprintf.c
index b8e91943b2449057cb4e144f8546d4fbe2882191..9be5b2d7f29b1cf89138c4036826984ea080965e 100644 (file)
@@ -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;
 }