diff options
Diffstat (limited to 'lib/libcurses/lib_data.c')
-rw-r--r-- | lib/libcurses/lib_data.c | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/lib/libcurses/lib_data.c b/lib/libcurses/lib_data.c index c7d6c559590..ec0b56a120d 100644 --- a/lib/libcurses/lib_data.c +++ b/lib/libcurses/lib_data.c @@ -1,3 +1,5 @@ +/* $OpenBSD: lib_data.c,v 1.3 1997/12/03 05:21:14 millert Exp $ */ + /*************************************************************************** * COPYRIGHT NOTICE * @@ -28,24 +30,11 @@ #include <curses.priv.h> -MODULE_ID("Id: lib_data.c,v 1.8 1997/01/18 23:02:54 tom Exp $") +MODULE_ID("Id: lib_data.c,v 1.10 1997/09/03 15:27:09 Alexander.V.Lukyanov Exp $") WINDOW *stdscr, *curscr, *newscr; -/* - * Linked-list of all windows, to support '_nc_resizeall()' and '_nc_freeall()' - */ -WINDOWLIST *_nc_windows; - -/* - * These data correspond to the state of the idcok() and idlok() functions. A - * caveat is in order here: the XSI and SVr4 documentation specify that these - * functions apply to the window which is given as an argument. However, - * ncurses implements this logic only for the newscr/curscr update process, - * _not_ per-window. - */ -bool _nc_idcok = TRUE; -bool _nc_idlok = FALSE; +SCREEN *_nc_screen_chain; /* * The variable 'SP' will be defined as a function on systems that cannot link |