summaryrefslogtreecommitdiff
path: root/src/stdio/vsscanf_s.c
blob: 3e3ea62ff3dc59f28e125fab819c510cb638a5ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdarg.h>
#include "_stdio.h"

int vsscanf_s(const char * restrict s, const char * restrict format, va_list arg)
{
	SIGNAL_SAFE(0);
	(void)s; (void)format; (void)arg;
	return 0;
}

/*
CEXT1(201112)
*/