diff options
Diffstat (limited to 'tests/test-pthread_sigmask1.c')
-rw-r--r-- | tests/test-pthread_sigmask1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-pthread_sigmask1.c b/tests/test-pthread_sigmask1.c index 595516e..92edb77 100644 --- a/tests/test-pthread_sigmask1.c +++ b/tests/test-pthread_sigmask1.c @@ -1,5 +1,5 @@ /* Test of pthread_sigmask in a single-threaded program. - Copyright (C) 2011-2017 Free Software Foundation, Inc. + Copyright (C) 2011-2018 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -30,7 +30,7 @@ SIGNATURE_CHECK (pthread_sigmask, int, (int, const sigset_t *, sigset_t *)); #include "macros.h" -#if !((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) +#if !(defined _WIN32 && !defined __CYGWIN__) static volatile int sigint_occurred; |