diff options
author | Holger Lubitz | 2007-07-27 21:46:21 +0200 |
---|---|---|
committer | Holger Lubitz | 2007-07-27 21:46:21 +0200 |
commit | ac1e0aa63edcc5af3178e1f49a7b104adc018e1a (patch) | |
tree | 61c3b7a7efdf4a1452300015f10bc37a39dab105 /src/hci/mucurses | |
parent | make _wgetc static (diff) | |
download | ipxe-ac1e0aa63edcc5af3178e1f49a7b104adc018e1a.tar.gz ipxe-ac1e0aa63edcc5af3178e1f49a7b104adc018e1a.tar.xz ipxe-ac1e0aa63edcc5af3178e1f49a7b104adc018e1a.zip |
remove has_key by #if 0'ing out
Diffstat (limited to 'src/hci/mucurses')
-rw-r--r-- | src/hci/mucurses/kb.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/hci/mucurses/kb.c b/src/hci/mucurses/kb.c index 9f5c6bb7..a68cf26a 100644 --- a/src/hci/mucurses/kb.c +++ b/src/hci/mucurses/kb.c @@ -19,6 +19,7 @@ int m_delay; /* bool m_echo; bool m_cbreak; +#if 0 /** * Check KEY_ code supported status * @@ -28,7 +29,8 @@ bool m_cbreak; */ int has_key ( int kc __unused ) { return TRUE; -} +} +#endif static int _wgetc ( WINDOW *win ) { |