Skip to content

Commit c1cc8ab

Browse files
committed
djgpp fix (SIGMAX).
1 parent a78bfe1 commit c1cc8ab

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Modules/signalmodule.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ PERFORMANCE OF THIS SOFTWARE.
4545
#endif
4646

4747
#ifndef NSIG
48+
#ifdef _SIGMAX
4849
#define NSIG (_SIGMAX + 1) /* For QNX */
50+
#else
51+
#define NSIG (SIGMAX + 1) /* for djgpp */
52+
#endif
4953
#endif
5054

5155

0 commit comments

Comments
 (0)