diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-08-16 20:30:25 +0000 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-09-12 13:07:38 -0400 |
commit | 5c82ea8f9f9f3ef043d4f206ded223a89a3bd360 (patch) | |
tree | 3671e6ee7f747f2ae3d238b83839bf2941567b39 /src/nvim/os | |
parent | 57836f2b71131decfc1da80b15a2c84f48de4336 (diff) | |
download | rneovim-5c82ea8f9f9f3ef043d4f206ded223a89a3bd360.tar.gz rneovim-5c82ea8f9f9f3ef043d4f206ded223a89a3bd360.tar.bz2 rneovim-5c82ea8f9f9f3ef043d4f206ded223a89a3bd360.zip |
remove HAVE_DUP #1072
Vim defines this for Windows, so there's no Neovim-supported system for
which this would not be defined.
Diffstat (limited to 'src/nvim/os')
-rw-r--r-- | src/nvim/os/os_defs.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nvim/os/os_defs.h b/src/nvim/os/os_defs.h index f0f74857e0..3d56115401 100644 --- a/src/nvim/os/os_defs.h +++ b/src/nvim/os/os_defs.h @@ -103,9 +103,6 @@ # include <strings.h> #endif -// For dup(3). -#define HAVE_DUP - /// Function to convert -errno error to char * error description /// /// -errno errors are returned by a number of os functions. |