blob: c004432b5c9bd1959742b19fbaf3459f7c201c44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <curses.h>
#include "_curses.h"
int wgetnstr(WINDOW * win, char * str, int n)
{
return 0;
}
CURSES_FUNCTION2(int, getch, char *, int)
/*
XOPEN(4)
LINK(curses)
*/
|