Kaydet (Commit) c1cc8ab1 authored tarafından Guido van Rossum's avatar Guido van Rossum

djgpp fix (SIGMAX).

üst a78bfe19
...@@ -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