From 0ceb9ace4baca78b478dd44f3676e2000335d8ab Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sun, 18 May 2025 09:09:02 -0600 Subject: [PATCH 1/2] Igor Todorovski is now a Perl author --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index 7c2207b99729..d219c0915ef1 100644 --- a/AUTHORS +++ b/AUTHORS @@ -599,6 +599,7 @@ Ian Phillipps Ichinose Shogo Ignasi Roca Carrió Igor Sutton +Igor Todorovski Igor Zaytsev Ilmari Karonen Ilya Martynov From 226dbdb5eb7945ce78344b772d79c1d9633b9812 Mon Sep 17 00:00:00 2001 From: Igor Todorovski Date: Sun, 18 May 2025 08:55:53 -0600 Subject: [PATCH 2/2] z/OS does not use Shmat_t --- doio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doio.c b/doio.c index d0681ad6ccbe..31e65f747e8b 100644 --- a/doio.c +++ b/doio.c @@ -35,7 +35,7 @@ #endif #ifdef HAS_SHM #include -# ifndef HAS_SHMAT_PROTOTYPE +# if ! defined(HAS_SHMAT_PROTOTYPE) && ! defined(__MVS__) extern Shmat_t shmat (int, char *, int); # endif #endif