diff options
| author | Guido van Rossum <guido@python.org> | 1997-02-14 16:35:36 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1997-02-14 16:35:36 +0000 |
| commit | c1cc8ab1a45c9ad29325db18cdb0d1a7a3cb5b66 (patch) | |
| tree | 9ddb4b5351ae06d8f6cab668b4208da2eda3def0 | |
| parent | a78bfe198565e25148b57a58fc5bec01ada8f6ab (diff) | |
| download | cpython-git-c1cc8ab1a45c9ad29325db18cdb0d1a7a3cb5b66.tar.gz | |
djgpp fix (SIGMAX).
| -rw-r--r-- | Modules/signalmodule.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c index e6d3f19fda..7ca697afc7 100644 --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c @@ -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 |
