diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-11-01 17:12:57 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-11-01 17:12:57 +0000 |
commit | 5a6404cff47a7d35da10ada4d57ec9eb15c1dfab (patch) | |
tree | b97780b30f44153c396036e2274bc4d5e554c590 /src/pty.c | |
parent | 219b87038a8ae7e0731677ed265779f3273a5cfa (diff) | |
download | vim-5a6404cff47a7d35da10ada4d57ec9eb15c1dfab.zip |
updated for version 7.0-156
Diffstat (limited to 'src/pty.c')
-rw-r--r-- | src/pty.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |