aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/pty_process_unix.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-12-16 14:28:17 +0100
committerGitHub <noreply@github.com>2018-12-16 14:28:17 +0100
commitb48efd9ba7bf1d317dcf231e3e595988537a5cf9 (patch)
treeb163ad47def5a6a1aff82375e9926800308136f8 /src/nvim/os/pty_process_unix.c
parentcffe2d4642a7d27a76ddb5516ff9df6a4e9e494d (diff)
parent3f55010cda120d0ccb35f9e24d93cee33f3aa17b (diff)
downloadrneovim-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.c2
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>