From 8b72ae7c7875f47b7d775038700ee17ce71a2510 Mon Sep 17 00:00:00 2001 From: Pavel Platto Date: Sat, 14 Jun 2014 09:35:18 +0300 Subject: Remove fix for select(). select() is not used anymore. --- src/nvim/os_unix.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/nvim/os_unix.c') 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 #include #include -- cgit