aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-05-28 02:37:07 +0200
committerGitHub <noreply@github.com>2017-05-28 02:37:07 +0200
commit1cf377f23af1115430752ab2717ad937d9989e2f (patch)
treea6788659ce99761b4090b0f95e7acd00601ccd16 /src
parent023f67cad8d6fb3e435d0bcc815cbaec8b1692d5 (diff)
parenta84926763f153ee2a97c1882223ecf925c05ba78 (diff)
downloadrneovim-1cf377f23af1115430752ab2717ad937d9989e2f.tar.gz
rneovim-1cf377f23af1115430752ab2717ad937d9989e2f.tar.bz2
rneovim-1cf377f23af1115430752ab2717ad937d9989e2f.zip
Merge #6777 from justinmk/bsd
Diffstat (limited to 'src')
-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 eb9335b03c..ee3ab96a83 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__)
+#if defined(__FreeBSD__) || defined (__DragonFly__)
# include <libutil.h>
#elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
# include <util.h>