0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 9.0.0287: Irix systems no longer exist

Problem:    Irix systems no longer exist.
Solution:   Remove references to Irix. (Yegappan Lakshmanan, closes #10994)
This commit is contained in:
Yegappan Lakshmanan
2022-08-27 21:24:26 +01:00
committed by Bram Moolenaar
parent 6d24a51b94
commit aebc6ef7cd
8 changed files with 7 additions and 99 deletions

View File

@@ -88,21 +88,10 @@
// have an argument???
#define SIGHASARG
// List 3 arg systems here. I guess __sgi, please test and correct me. jw.
#if defined(__sgi) && defined(HAVE_SIGCONTEXT)
# define SIGHAS3ARGS
#endif
#ifdef SIGHASARG
# ifdef SIGHAS3ARGS
# define SIGPROTOARG (int, int, struct sigcontext *)
# define SIGDEFARG(s) (int s, int sig2, struct sigcontext *scont)
# define SIGDUMMYARG 0, 0, (struct sigcontext *)0
# else
# define SIGPROTOARG (int)
# define SIGDEFARG(s) (int s UNUSED)
# define SIGDUMMYARG 0
# endif
# define SIGPROTOARG (int)
# define SIGDEFARG(s) (int s UNUSED)
# define SIGDUMMYARG 0
#else
# define SIGPROTOARG (void)
# define SIGDEFARG(s) ()