diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-12-16 14:28:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-16 14:28:17 +0100 |
commit | b48efd9ba7bf1d317dcf231e3e595988537a5cf9 (patch) | |
tree | b163ad47def5a6a1aff82375e9926800308136f8 /src/nvim/os/pty_process_unix.c | |
parent | cffe2d4642a7d27a76ddb5516ff9df6a4e9e494d (diff) | |
parent | 3f55010cda120d0ccb35f9e24d93cee33f3aa17b (diff) | |
download | rneovim-b48efd9ba7bf1d317dcf231e3e595988537a5cf9.tar.gz rneovim-b48efd9ba7bf1d317dcf231e3e595988537a5cf9.tar.bz2 rneovim-b48efd9ba7bf1d317dcf231e3e595988537a5cf9.zip |
Merge #9347 from justinmk/tui-bsd
TUI: detect BSD vt console
Diffstat (limited to 'src/nvim/os/pty_process_unix.c')
-rw-r--r-- | src/nvim/os/pty_process_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/pty_process_unix.c b/src/nvim/os/pty_process_unix.c index bafbfe1e4b..bcf57e1b5b 100644 --- a/src/nvim/os/pty_process_unix.c +++ b/src/nvim/os/pty_process_unix.c @@ -12,7 +12,7 @@ #include <sys/ioctl.h> // forkpty is not in POSIX, so headers are platform-specific -#if defined(__FreeBSD__) || defined (__DragonFly__) +#if defined(__FreeBSD__) || defined(__DragonFly__) # include <libutil.h> #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__) # include <util.h> |