aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/tools/bison/lib/sigaction.c
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2024-06-26 23:46:47 +0300
committerthegeorg <thegeorg@yandex-team.com>2024-06-26 23:57:08 +0300
commitac037438ef5c581b0dc01829e7ba173d4b2a4d42 (patch)
tree567767475824d592c71612b198b47118923d68f5 /contrib/tools/bison/lib/sigaction.c
parent10d8655dd385fe03395d60abfbb5903fcc87b2a4 (diff)
downloadydb-ac037438ef5c581b0dc01829e7ba173d4b2a4d42.tar.gz
Update contrib/tools/bison to 3.1
3649391e5dae6eedaa45d736e3febbde1342c10a
Diffstat (limited to 'contrib/tools/bison/lib/sigaction.c')
-rw-r--r--contrib/tools/bison/lib/sigaction.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/tools/bison/lib/sigaction.c b/contrib/tools/bison/lib/sigaction.c
index 97eb76d92e..7e4af5fe55 100644
--- a/contrib/tools/bison/lib/sigaction.c
+++ b/contrib/tools/bison/lib/sigaction.c
@@ -1,5 +1,5 @@
/* POSIX compatible signal blocking.
- Copyright (C) 2008-2013 Free Software Foundation, Inc.
+ Copyright (C) 2008-2018 Free Software Foundation, Inc.
Written by Eric Blake <ebb9@byu.net>, 2008.
This program is free software: you can redistribute it and/or modify
@@ -13,7 +13,7 @@
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
+ along with this program. If not, see <https://www.gnu.org/licenses/>. */
#include <config.h>
@@ -67,7 +67,7 @@
/* On native Windows, as of 2008, the signal SIGABRT_COMPAT is an alias
for the signal SIGABRT. Only one signal handler is stored for both
SIGABRT and SIGABRT_COMPAT. SIGABRT_COMPAT is not a signal of its own. */
-#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
+#if defined _WIN32 && ! defined __CYGWIN__
# undef SIGABRT_COMPAT
# define SIGABRT_COMPAT 6
#endif