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

int ungetch(int ch)
{
	return 0;
}

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