summaryrefslogtreecommitdiff
path: root/src/stdio/vscanf.c
blob: 2b94b61ca2288f9b22d8c50e59a4be1606945c4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#include "_format.h"

int vscanf(const char * restrict format, va_list arg)
{
	SIGNAL_SAFE(0);
	return vfscanf(stdin, format, arg);
}

/*
STDC(199901)
*/