This commit is contained in:
jl777
2019-02-16 01:39:02 -11:00
parent 9da6a5c5d0
commit ffccabc6f2
2 changed files with 5 additions and 4 deletions

View File

@@ -13,10 +13,11 @@
* *
******************************************************************************/
/*#include "cursesd.h"
#include "cursesd.h"
WINDOW *initscr()
{
if ( stdscr == 0 )
stdscr = (WINDOW)calloc(1,sizeof(*stdscr));
}*/
stdscr = (WINDOW *)calloc(1,sizeof(*stdscr));
return(stdscr);
}