blob: 0402882594895256d9d0dd97e1d3ce4d0532f135 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <curses.h>
#include "_curses.h"
int wattr_off(WINDOW * win, attr_t attrs, void * opts)
{
return ERR;
}
CURSES_WFN2(int, attr_off, attr_t, void *)
/*
XOPEN(400)
LINK(curses)
*/
|