X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=functions%2Fstdio%2Fvscanf.c;h=3e4ada482a1e8074aeef459312485b4cfe87c476;hp=dc3a236a2bd552e24bed4e2c27d3a468fb6cbae6;hb=b5b6c4a890795ea76f9b92b817b0a83c6bb4862c;hpb=aa8b812cace09efe5e21f191761a5258b266b87b diff --git a/functions/stdio/vscanf.c b/functions/stdio/vscanf.c index dc3a236..3e4ada4 100644 --- a/functions/stdio/vscanf.c +++ b/functions/stdio/vscanf.c @@ -10,10 +10,12 @@ #include #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 )