]> code.delx.au - gnu-emacs/blobdiff - lib/sig2str.h
Ibuffer change marks
[gnu-emacs] / lib / sig2str.h
index df6bfd39e3d240234fe83852cacc43fbe73194dd..2730774d165da62c17fd04fe435914f3559ddab7 100644 (file)
@@ -1,6 +1,6 @@
 /* sig2str.h -- convert between signal names and numbers
 
-   Copyright (C) 2002, 2005, 2009-2013 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