ERR: Removed most of the repeated curses declarations. The cause errors on other platforms. Grrrr..
This commit is contained in:
parent
5bed7ca691
commit
953e01a604
|
@ -45,6 +45,8 @@ MODULE_ID("$Id$")
|
||||||
|
|
||||||
/* These declarations are missing from curses.h on some platforms. */
|
/* These declarations are missing from curses.h on some platforms. */
|
||||||
extern int winnstr(WINDOW *, char *, int);
|
extern int winnstr(WINDOW *, char *, int);
|
||||||
|
|
||||||
|
#if 0
|
||||||
extern int waddnstr(WINDOW *,const char *const,int);
|
extern int waddnstr(WINDOW *,const char *const,int);
|
||||||
extern void wbkgdset(WINDOW *,chtype);
|
extern void wbkgdset(WINDOW *,chtype);
|
||||||
#ifndef untouchwin
|
#ifndef untouchwin
|
||||||
|
@ -57,6 +59,7 @@ extern void wsyncup(WINDOW *);
|
||||||
extern WINDOW *derwin(WINDOW *,int,int,int,int);
|
extern WINDOW *derwin(WINDOW *,int,int,int,int);
|
||||||
extern int winsnstr(WINDOW *, const char *,int);
|
extern int winsnstr(WINDOW *, const char *,int);
|
||||||
extern int winsdelln(WINDOW *,int);
|
extern int winsdelln(WINDOW *,int);
|
||||||
|
#endif
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------
|
/*----------------------------------------------------------------------------
|
||||||
This is the core module of the form library. It contains the majority
|
This is the core module of the form library. It contains the majority
|
||||||
|
|
Loading…
Reference in New Issue