blob: 9f3f69260929c4d89ec82ac2cd5c850db48c5328 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <curses.h>
#include "_curses.h"
int waddch(WINDOW * win, const chtype ch)
{
(void)win; (void)ch;
return 0;
}
CURSES_FUNCTION(int, addch, const chtype)
/*
XOPEN(4)
LINK(curses)
*/
|