aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os_unix.c
diff options
context:
space:
mode:
authorPavel Platto <hinidu@gmail.com>2014-06-14 09:35:18 +0300
committerPavel Platto <hinidu@gmail.com>2014-08-02 09:18:06 +0300
commit8b72ae7c7875f47b7d775038700ee17ce71a2510 (patch)
tree7426209a9c801e887552315ddf3af614e4b309bd /src/nvim/os_unix.c
parentf42a4be834acaf6d12e21dde78b98b9ace45f6aa (diff)
downloadrneovim-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.c9
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>