From: Chris Hanson Date: Thu, 8 Mar 2012 07:09:06 +0000 (-0800) Subject: Prefer to if both are present. X-Git-Tag: release-9.2.0~269 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=78b6650e7467b98a6130e50bb8b1b94c91f1abfb;p=mit-scheme.git Prefer to if both are present. --- 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 *);