Commit f12d14a9 authored by Guido van Rossum's avatar Guido van Rossum

djgpp fix (SIGMAX).

parent 380ab8fd
...@@ -45,7 +45,11 @@ PERFORMANCE OF THIS SOFTWARE. ...@@ -45,7 +45,11 @@ PERFORMANCE OF THIS SOFTWARE.
#endif #endif
#ifndef NSIG #ifndef NSIG
#ifdef _SIGMAX
#define NSIG (_SIGMAX + 1) /* For QNX */ #define NSIG (_SIGMAX + 1) /* For QNX */
#else
#define NSIG (SIGMAX + 1) /* for djgpp */
#endif
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment