aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/vim.h
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-11-26 12:28:12 -0500
committerJames McCoy <jamessan@jamessan.com>2017-11-28 17:53:41 -0500
commit20bde8866e6a310f6fee6a6fcdb7546bac335944 (patch)
treea8a8806e94bd2311cd96f8fe2f1ea378b33d6f5d /src/nvim/vim.h
parent122dbc86ab1535524af89cff0c9cbc78b64a804e (diff)
downloadrneovim-20bde8866e6a310f6fee6a6fcdb7546bac335944.tar.gz
rneovim-20bde8866e6a310f6fee6a6fcdb7546bac335944.tar.bz2
rneovim-20bde8866e6a310f6fee6a6fcdb7546bac335944.zip
Add OpenBSD as an expected OS for opening char devices
Closes #7542
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r--src/nvim/vim.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h
index 1db1a073ed..88014c8ae8 100644
--- a/src/nvim/vim.h
+++ b/src/nvim/vim.h
@@ -314,7 +314,7 @@ enum { FOLD_TEXT_LEN = 51 }; //!< buffer size for get_foldtext()
// Lowest number used for window ID. Cannot have this many windows per tab.
#define LOWEST_WIN_ID 1000
-#if (defined(__FreeBSD__) || defined(__FreeBSD_kernel__)) && defined(S_ISCHR)
+#if (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__)) && defined(S_ISCHR)
# define OPEN_CHR_FILES
#endif