/* ------------ termination.h ------------ */ #ifdef TERM_H #include #define lowbyte(w) ((w) & 0377) #define highbyte(w) lowbyte((w) >> 8) #define MAXSIG 19 #else void statusprt(int status); #endif