summaryrefslogtreecommitdiff
path: root/src/wchar/vswprintf.c
blob: 63169a59b41f94fbd1fc444ae918bda511abad0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "stdarg.h"
#include <wchar.h>

int vswprintf(wchar_t * restrict s, size_t n, const wchar_t * restrict format, va_list arg)
{
	(void)s; (void)n; (void)format; (void)arg;
	return -1;
}

/*
STDC(199409)
*/