djgpp fix (SIGMAX).
This commit is contained in:
parent
a78bfe1985
commit
c1cc8ab1a4
|
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue