From fea07844ac794563b38958b40d1856a76bb18030 Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Mon, 11 Jun 2001 15:21:43 +0000 Subject: [PATCH] Protect the use of the VWERASE symbol by an #ifdef, it's apparently missing on (some versions of ?) AIX. --- Modules/termios.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Modules/termios.c b/Modules/termios.c index 9079351c66d4..54d72b2fb62a 100644 --- a/Modules/termios.c +++ b/Modules/termios.c @@ -542,7 +542,9 @@ static struct constant { #ifdef VDISCARD {"VDISCARD", VDISCARD}, #endif +#ifdef VWERASE {"VWERASE", VWERASE}, +#endif {"VLNEXT", VLNEXT}, {"VEOL2", VEOL2}, -- 2.47.3