diff options
author | Pavel Platto <hinidu@gmail.com> | 2014-06-14 09:35:18 +0300 |
---|---|---|
committer | Pavel Platto <hinidu@gmail.com> | 2014-08-02 09:18:06 +0300 |
commit | 8b72ae7c7875f47b7d775038700ee17ce71a2510 (patch) | |
tree | 7426209a9c801e887552315ddf3af614e4b309bd /src/nvim/os_unix.c | |
parent | f42a4be834acaf6d12e21dde78b98b9ace45f6aa (diff) | |
download | rneovim-8b72ae7c7875f47b7d775038700ee17ce71a2510.tar.gz rneovim-8b72ae7c7875f47b7d775038700ee17ce71a2510.tar.bz2 rneovim-8b72ae7c7875f47b7d775038700ee17ce71a2510.zip |
Remove fix for select(). select() is not used anymore.
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r-- | src/nvim/os_unix.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index fd0489d03f..e3b14fa352 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -16,15 +16,6 @@ * changed beyond recognition. */ -/* - * Some systems have a prototype for select() that has (int *) instead of - * (fd_set *), which is wrong. This define removes that prototype. We define - * our own prototype below. - * Don't use it for the Mac, it causes a warning for precompiled headers. - * TODO: use a configure check for precompiled headers? - */ -# define select select_declared_wrong - #include <errno.h> #include <inttypes.h> #include <stdbool.h> |