From bbb649ac696e2c8f8ec3a1cd46e8b1b1803ce9d1 Mon Sep 17 00:00:00 2001 From: Nicolas Hillegeer Date: Mon, 2 Jun 2014 22:20:34 +0200 Subject: os: remove legacy mch_libcall Remove as much leftover cruft as possible. Tried to see which globals are now not used anymore. --- src/nvim/os_unix_defs.h | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/nvim/os_unix_defs.h') diff --git a/src/nvim/os_unix_defs.h b/src/nvim/os_unix_defs.h index ebecca3aae..6a3934b0c8 100644 --- a/src/nvim/os_unix_defs.h +++ b/src/nvim/os_unix_defs.h @@ -262,17 +262,6 @@ # include #endif -#include -#ifdef HAVE_SIGSETJMP -# define JMP_BUF sigjmp_buf -# define SETJMP(x) sigsetjmp((x), 1) -# define LONGJMP siglongjmp -#else -# define JMP_BUF jmp_buf -# define SETJMP(x) setjmp(x) -# define LONGJMP longjmp -#endif - #define HAVE_DUP /* have dup() */ /* We have three kinds of ACL support. */ -- cgit