summaryrefslogtreecommitdiff
path: root/src/cm.h
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-07-16 09:03:24 +0000
committerKarl Heuer <kwzh@gnu.org>1996-07-16 09:03:24 +0000
commit6c7c9244a9338918ae0a964e067a0e0796fb6ee6 (patch)
treeaee3b27f334f7f28c68fa3012311ebefb6b20577 /src/cm.h
parentaad2a123ca33de4c1acbf8ccc5b351d0484343d9 (diff)
downloademacs-6c7c9244a9338918ae0a964e067a0e0796fb6ee6.tar.gz
Test HAVE_TERMIOS rather than the automatically-generated HAVE_TERMIOS_H,
in case <termios.h> is present but unusable.
Diffstat (limited to 'src/cm.h')
-rw-r--r--src/cm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cm.h b/src/cm.h
index f5c8157f5e7..0b23bc9eb36 100644
--- a/src/cm.h
+++ b/src/cm.h
@@ -100,7 +100,7 @@ struct cm
extern struct cm Wcm; /* Terminal capabilities */
extern char PC; /* Pad character */
-#ifdef HAVE_TERMIOS_H
+#ifdef HAVE_TERMIOS
# include <termios.h>
extern speed_t ospeed;
#else