aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorOleg Nesterov <oleg@redhat.com>2015-10-19 16:28:53 +0200
committerWill Deacon <will.deacon@arm.com>2015-10-27 16:01:59 +0000
commit4d7f252f21108371553c2a3904195bdf98e94e04 (patch)
treec71b94f660481da104da541145ce0f9d184992da /include
parent8a7163f3dbc77b3734ccf7cee0b79119379a2a2d (diff)
downloadkvmtool-4d7f252f21108371553c2a3904195bdf98e94e04.tar.gz
kvmtool/term: unexport term_set_tty, term_init, term_exit
According to git grep they can be static. term_got_escape can be static too, and we can even move it into term_getc(). "int term_escape_char" doesn't make sense at least until we allow to redefine it, turn it into preprocessor constant. Signed-off-by: Oleg Nesterov <oleg@redhat.com> Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'include')
-rw-r--r--include/kvm/term.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/kvm/term.h b/include/kvm/term.h
index dc9882e2..b9793f07 100644
--- a/include/kvm/term.h
+++ b/include/kvm/term.h
@@ -18,9 +18,6 @@ int term_putc(char *addr, int cnt, int term);
int term_getc(struct kvm *kvm, int term);
bool term_readable(int term);
-void term_set_tty(int term);
-int term_init(struct kvm *kvm);
-int term_exit(struct kvm *kvm);
int tty_parser(const struct option *opt, const char *arg, int unset);
#endif /* KVM__TERM_H */