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

int fputws(const wchar_t * restrict s, FILE * restrict stream)
{
	(void)s; (void)stream;
	return -1;
}

/*
STDC(199409)
*/