summaryrefslogtreecommitdiff
path: root/src/pty.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-11-01 17:12:57 +0000
committerBram Moolenaar <Bram@vim.org>2006-11-01 17:12:57 +0000
commit5a6404cff47a7d35da10ada4d57ec9eb15c1dfab (patch)
treeb97780b30f44153c396036e2274bc4d5e554c590 /src/pty.c
parent219b87038a8ae7e0731677ed265779f3273a5cfa (diff)
downloadvim-git-5a6404cff47a7d35da10ada4d57ec9eb15c1dfab.tar.gz
updated for version 7.0-156v7.0.156
Diffstat (limited to 'src/pty.c')
-rw-r--r--src/pty.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pty.c b/src/pty.c
index c28d78e43..8d177d7a9 100644
--- a/src/pty.c
+++ b/src/pty.c
@@ -51,7 +51,7 @@
# include <sys/termios.h>
#endif
-#if HAVE_SYS_IOCTL_H
+#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
#endif
@@ -69,14 +69,14 @@
# endif
#endif
-#if HAVE_UNISTD_H
+#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#if HAVE_TERMIO_H
# include <termio.h>
#else
-# if HAVE_TERMIOS_H
+# ifdef HAVE_TERMIOS_H
# include <termios.h>
# endif
#endif