From 819bb2c5029b8b25cf856eb48da49d98cc580785 Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Mon, 11 Jun 2001 15:25:16 +0000 Subject: 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(+) (limited to 'Modules/termios.c') diff --git a/Modules/termios.c b/Modules/termios.c index 9079351c66..54d72b2fb6 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}, -- cgit v1.2.1