Calculate unpack

This commit is contained in:
jl777
2019-02-16 01:29:42 -11:00
parent f341a6938e
commit 49e84c350e
5 changed files with 59 additions and 15 deletions

22
src/cc/rogue/cursesd.c Normal file
View File

@@ -0,0 +1,22 @@
/******************************************************************************
* Copyright © 2014-2019 The SuperNET Developers. *
* *
* See the AUTHORS, DEVELOPER-AGREEMENT and LICENSE files at *
* the top-level directory of this distribution for the individual copyright *
* holder information and the developer policies on copyright and licensing. *
* *
* Unless otherwise agreed in a custom licensing agreement, no part of the *
* SuperNET software, including this file may be copied, modified, propagated *
* or distributed except according to the terms contained in the LICENSE file *
* *
* Removal or modification of this copyright notice is prohibited. *
* *
******************************************************************************/
#include "cursesd.h"
WINDOW *initscr()
{
if ( stdscr == 0 )
stdscr = (WINDOW)calloc(1,sizeof(*stdscr));
}