From: sandmann AT clio DOT rice DOT edu (Charles Sandmann) Message-Id: <9702032156.AA12020@clio.rice.edu> Subject: Re: POSIX signal functions (1/2) To: eliz AT is DOT elta DOT co DOT il (Eli Zaretskii) Date: Mon, 3 Feb 1997 15:56:41 -0600 (CST) Cc: djgpp-workers AT delorie DOT com, dj AT delorie DOT com In-Reply-To: from "Eli Zaretskii" at Feb 3, 97 06:05:09 pm Content-Type: text Content-Length: 476 > I think I can't, because SIGMAX is non-POSIX and isn't defined when you > compile with -posix, while these are POSIX functions. I was uneasy about > using 320, but I don't see any other way. DJ? While these are POSIX functions, you don't have to compile them with -posix. The #define string will not be externally visable. At the very least, put a #ifndef SIGMAX ...#define SIGMAX in the top of the code itself and use that, so the constant appears in a single place.