From 78b6650e7467b98a6130e50bb8b1b94c91f1abfb Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Wed, 7 Mar 2012 23:09:06 -0800 Subject: [PATCH] Prefer to if both are present. --- src/microcode/tterm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/microcode/tterm.c b/src/microcode/tterm.c index ee0d9a5f4..5a5d44c14 100644 --- a/src/microcode/tterm.c +++ b/src/microcode/tterm.c @@ -51,10 +51,10 @@ USA. macro expanding to a function call. WTF? Unix sucks. */ #undef ospeed -#if defined(HAVE_TERM_H) -# include -#elif defined(HAVE_TERMCAP_H) +#if defined(HAVE_TERMCAP_H) # include +#elif defined(HAVE_TERM_H) +# include #else extern int tgetent (char *, const char *); extern int tgetnum (const char *); -- 2.25.1