summaryrefslogtreecommitdiff
path: root/src/curses/delch.c
blob: 074852d13b76adeed97a2980ee660eeec68158b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <curses.h>
#include "_curses.h"

int wdelch(WINDOW * win)
{
	(void)win;
	return ERR;
}

CURSES_FUNCTION0(int, delch)

/*
XOPEN(4)
LINK(curses)
*/