summaryrefslogtreecommitdiff
path: root/src/curses/unget_wch.c
blob: 9837bfa92aa8333af2ab8fd701fe14b4682a977a (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <curses.h>

int unget_wch(const wchar_t wch)
{
	return 0;
}

/*
XOPEN(400)
LINK(curses)
*/