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

