diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1994-11-17 23:53:25 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1994-11-17 23:53:25 +0000 |
commit | 1f6f0b64cc4185a373bcbb1b5978ab2641c53f88 (patch) | |
tree | f01162c9b00990e88a42654a07cf130cb8cf6227 | |
parent | 4195601de8844f1ab0ea54020f5718688530c7e5 (diff) |
Notes
-rw-r--r-- | lib/libncurses/curses.priv.h | 1 | ||||
-rw-r--r-- | lib/libncurses/ncurses.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/lib/libncurses/curses.priv.h b/lib/libncurses/curses.priv.h index 604fe7b610ce3..da8bf0576a8c0 100644 --- a/lib/libncurses/curses.priv.h +++ b/lib/libncurses/curses.priv.h @@ -34,7 +34,6 @@ typedef struct sigaction sigaction_t; #define CHANGED -1 -extern WINDOW *newscr; extern int _coloron; extern int _isendwin; diff --git a/lib/libncurses/ncurses.h b/lib/libncurses/ncurses.h index 743a50b84d9f0..6f11d18cdea43 100644 --- a/lib/libncurses/ncurses.h +++ b/lib/libncurses/ncurses.h @@ -137,7 +137,7 @@ struct _win_st { WINDOW *_parent; /* parent if a sub-window */ }; -extern WINDOW *stdscr, *curscr; +extern WINDOW *stdscr, *curscr, *newscr; extern int LINES, COLS; |