]> pd.if.org Git - pdclib/blobdiff - functions/stdio/vscanf.c
PDCLIB-16: Add _unlocked variations of all I/O routines; move work into these versions
[pdclib] / functions / stdio / vscanf.c
index 0b9189d69c9ab21f60e89ab3224e4c059304f01f..dc3a236a2bd552e24bed4e2c27d3a468fb6cbae6 100644 (file)
 
 #ifndef REGTEST
 
+int vscanf_unlocked( const char * _PDCLIB_restrict format, _PDCLIB_va_list arg )
+{
+    return vfscanf_unlocked( stdin, format, arg );
+}
+
 int vscanf( const char * _PDCLIB_restrict format, _PDCLIB_va_list arg )
 {
     return vfscanf( stdin, format, arg );