From 003f4cd993c14f6235317fd17be26de04374e987 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Fri, 6 Jul 2001 02:12:02 +0000 Subject: [PATCH] dux-curses-already-using-IN-20010705 don't define IN as it conflicts with curses.h on dux --- src/gtx/windows.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/gtx/windows.c b/src/gtx/windows.c index cde4b8617..eb6ba62c2 100644 --- a/src/gtx/windows.c +++ b/src/gtx/windows.c @@ -20,6 +20,11 @@ RCSID("$Header$"); +/* On DUX "IN" is a variable in curses.h, so this can be a bit of a problem */ +#ifdef IN +#undef IN +#endif + #include "gtxwindows.h" /*Interface for this module*/ #include "gtxcurseswin.h" /*Interface for the curses module*/ #include "gtxdumbwin.h" /*Interface for the dumb terminal module*/ -- 2.39.5