/* -------------------- sign.h ------------------------ */ #include typedef void (*Sigfunc)(int); #ifndef SIGN_H #define SIGN_H /* avoid multiple includes */ Sigfunc install_lm_sig(int); Sigfunc install_ct_sig(int); #endif