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

bool is_wintouched(WINDOW * win)
{
	return FALSE;
}

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