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

wint_t ungetwc(wint_t c, FILE * stream)
{
	(void)c; (void)stream;
	return -1;
}

/*
STDC(199409)
*/