Formerly make.h.~43~

This commit is contained in:
Roland McGrath 1992-06-03 01:13:30 +00:00
parent 6b0a5fd941
commit 835c266436

4
make.h
View file

@ -38,6 +38,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define SIGNAL(sig, handler) \
((SIGHANDLER) signal((sig), (SIGHANDLER) (handler)))
#ifdef CRAY
#define signal bsdsignal
#endif
#ifndef sigmask
#define sigmask(sig) (1 << ((sig) - 1))
#endif