]> pd.if.org Git - pdclib.old/blobdiff - functions/stdio/vscanf.c
Namespace cleanliness: Rename all ***_unlocked functions to _PDCLIB_***_unlocked.
[pdclib.old] / functions / stdio / vscanf.c
index dc3a236a2bd552e24bed4e2c27d3a468fb6cbae6..3e4ada482a1e8074aeef459312485b4cfe87c476 100644 (file)
 #include <stdarg.h>
 
 #ifndef REGTEST
+#include <_PDCLIB_io.h>
 
-int vscanf_unlocked( const char * _PDCLIB_restrict format, _PDCLIB_va_list arg )
+int _PDCLIB_vscanf_unlocked( const char * _PDCLIB_restrict format, 
+                             _PDCLIB_va_list arg )
 {
-    return vfscanf_unlocked( stdin, format, arg );
+    return _PDCLIB_vfscanf_unlocked( stdin, format, arg );
 }
 
 int vscanf( const char * _PDCLIB_restrict format, _PDCLIB_va_list arg )