From c2e18e896f4166bd89e98fec68d4febe29b3b4be Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Wed, 3 Jul 2019 20:12:46 +0300 Subject: [PATCH] libweston: Removed unused tty_* functions These are nowhere defined, so it seems the we're only left with these declarations. Signed-off-by: Marius Vlad --- include/libweston/libweston.h | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/include/libweston/libweston.h b/include/libweston/libweston.h index 4e9690a4d..d4d95b5c5 100644 --- a/include/libweston/libweston.h +++ b/include/libweston/libweston.h @@ -2168,23 +2168,6 @@ int weston_log_continue(const char *fmt, ...) __attribute__ ((format (printf, 1, 2))); -enum { - TTY_ENTER_VT, - TTY_LEAVE_VT -}; - -struct tty * -tty_create(struct weston_compositor *compositor, int tty_nr); - -void -tty_destroy(struct tty *tty); - -void -tty_reset(struct tty *tty); - -int -tty_activate_vt(struct tty *tty, int vt); - enum weston_screenshooter_outcome { WESTON_SCREENSHOOTER_SUCCESS, WESTON_SCREENSHOOTER_NO_MEMORY,