]> 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 0b9189d69c9ab21f60e89ab3224e4c059304f01f..3e4ada482a1e8074aeef459312485b4cfe87c476 100644 (file)
 #include <stdarg.h>
 
 #ifndef REGTEST
+#include <_PDCLIB_io.h>
+
+int _PDCLIB_vscanf_unlocked( const char * _PDCLIB_restrict format, 
+                             _PDCLIB_va_list arg )
+{
+    return _PDCLIB_vfscanf_unlocked( stdin, format, arg );
+}
 
 int vscanf( const char * _PDCLIB_restrict format, _PDCLIB_va_list arg )
 {