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