From cd2cfeb8cb41a3e41bad55d34dcb448c52eff065 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Thu, 16 May 2019 12:24:48 -0600 Subject: [PATCH] It is safe to assume _POSIX_VDISABLE is defined. The old compat defines were to support pre-termios systems. --- lib/util/term.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/util/term.c b/lib/util/term.c index f15172135..e1cf48449 100644 --- a/lib/util/term.c +++ b/lib/util/term.c @@ -92,14 +92,6 @@ # define PENDIN 0 #endif -#ifndef _POSIX_VDISABLE -# ifdef VDISABLE -# define _POSIX_VDISABLE VDISABLE -# else -# define _POSIX_VDISABLE 0 -# endif -#endif - static struct termios term, oterm; static int changed;