1 /*=============================================================
2  * has_key.c -- Placeholder for ncurses function has_key
3  *   Created: 2003/01 by Perry Rapp
4  *==============================================================*/
5 
6 #include "standard.h"
7 #include "arch.h"
8 
9 /*=================================================
10  * has_key -- return true if curses character
11  *  contains a special hardware key code
12  * Created: 2003/01/02 (Perry Rapp)
13  *===============================================*/
has_key(int ch)14 int has_key(int ch)
15 {
16 	ch=ch; /* unused */
17 	return 0;
18 }
19