aboutsummaryrefslogtreecommitdiffstats
path: root/io/putwchar.c
blob: c4fdf4718efacb6b8cf1b9a5203614af5032f21c (plain) (blame)
1
2
3
4
5
6
7
#define NEED_WINT
#include "io.h"

wint_t putwchar(wchar_t character)
{
	return fputwc(character, _stdstream_wrap(stream_output));
}