X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/035f5aaa91ebd40598e0d89881bbc3cf532440a0..c69aef14ddc150da07dcd3527b5a9fb99d6cef34:/lib/sig2str.h diff --git a/lib/sig2str.h b/lib/sig2str.h index ac2f67a17c..2730774d16 100644 --- a/lib/sig2str.h +++ b/lib/sig2str.h @@ -1,6 +1,6 @@ /* sig2str.h -- convert between signal names and numbers - Copyright (C) 2002, 2005, 2009-2015 Free Software Foundation, Inc. + Copyright (C) 2002, 2005, 2009-2016 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 @@ -44,6 +44,8 @@ int str2sig (char const *, int *); #if defined _sys_nsig # define SIGNUM_BOUND (_sys_nsig - 1) +#elif defined _SIG_MAXSIG +# define SIGNUM_BOUND (_SIG_MAXSIG - 2) /* FreeBSD >= 7. */ #elif defined NSIG # define SIGNUM_BOUND (NSIG - 1) #else