summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2002-06-21 14:26:50 (GMT)
committerBrad King <brad.king@kitware.com>2002-06-21 14:26:50 (GMT)
commit953e01a60432578a0864277e8e8c067aba48da5e (patch)
tree8a628672fa5d2d50e7d85c079b4ae7bf00a98a8b /Source
parent5bed7ca691bf09b8e26a48fc3de10a7301f70d73 (diff)
downloadCMake-953e01a60432578a0864277e8e8c067aba48da5e.zip
CMake-953e01a60432578a0864277e8e8c067aba48da5e.tar.gz
CMake-953e01a60432578a0864277e8e8c067aba48da5e.tar.bz2
ERR: Removed most of the repeated curses declarations. The cause errors on other platforms. Grrrr..
Diffstat (limited to 'Source')
-rw-r--r--Source/CursesDialog/form/frm_driver.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/CursesDialog/form/frm_driver.c b/Source/CursesDialog/form/frm_driver.c
index 61aec75..c7b8119 100644
--- a/Source/CursesDialog/form/frm_driver.c
+++ b/Source/CursesDialog/form/frm_driver.c
@@ -45,6 +45,8 @@ MODULE_ID("$Id$")
/* These declarations are missing from curses.h on some platforms. */
extern int winnstr(WINDOW *, char *, int);
+
+#if 0
extern int waddnstr(WINDOW *,const char *const,int);
extern void wbkgdset(WINDOW *,chtype);
#ifndef untouchwin
@@ -57,6 +59,7 @@ extern void wsyncup(WINDOW *);
extern WINDOW *derwin(WINDOW *,int,int,int,int);
extern int winsnstr(WINDOW *, const char *,int);
extern int winsdelln(WINDOW *,int);
+#endif
/*----------------------------------------------------------------------------
This is the core module of the form library. It contains the majority