From 2404e15e72dcf12395f914bc933faeaaa6e8be33 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Tue, 11 Feb 2020 03:42:06 -0500 Subject: Check if VDSUSP exists --- ui.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ui.c') diff --git a/ui.c b/ui.c index 6c9606d..d3c5322 100644 --- a/ui.c +++ b/ui.c @@ -176,7 +176,9 @@ static void acquireKeys(void) { term.c_iflag &= ~IXON; term.c_cc[VINTR] = _POSIX_VDISABLE; term.c_cc[VSUSP] = _POSIX_VDISABLE; +#ifdef VDSUSP term.c_cc[VDSUSP] = _POSIX_VDISABLE; +#endif term.c_cc[VDISCARD] = _POSIX_VDISABLE; error = tcsetattr(STDOUT_FILENO, TCSADRAIN, &term); if (error) err(EX_OSERR, "tcsetattr"); -- cgit 1.4.0