Make has_key() a static inline, rather than omitting it altogether.

This commit is contained in:
Michael Brown
2007-07-28 22:55:17 +01:00
parent 3e816c3d56
commit 0d568ac219
2 changed files with 5 additions and 15 deletions

View File

@@ -566,6 +566,10 @@ static inline bool has_colors ( void ) {
return TRUE;
}
static inline int has_key ( int kc __unused ) {
return TRUE;
}
static inline int hline ( chtype ch, int n ) {
return whline ( stdscr, ch, n );
}