mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
djgpp fix (SIGMAX).
This commit is contained in:
parent
a78bfe1985
commit
c1cc8ab1a4
1 changed files with 4 additions and 0 deletions
|
@ -45,7 +45,11 @@ PERFORMANCE OF THIS SOFTWARE.
|
|||
#endif
|
||||
|
||||
#ifndef NSIG
|
||||
#ifdef _SIGMAX
|
||||
#define NSIG (_SIGMAX + 1) /* For QNX */
|
||||
#else
|
||||
#define NSIG (SIGMAX + 1) /* for djgpp */
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue