blob: d0949ce42dab6cdfe5d81bd417cd3b482ec97545 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <curses.h>
#include "stdio.h"
#include "stdlib.h"
WINDOW * initscr(void)
{
(void)newterm(getenv("TERM"), stdout, stdin);
return stdscr;
}
/*
XOPEN(4)
LINK(curses)
*/
|