/*
// ColdMUD was created and is copyright 1993, 1994 by Greg Hudson
//
// ColdX is a derivitive work, and is copyright 1995 by the ColdX Project.
// Full copyright information can be found in the file doc/CREDITS
//
// File:        sig.h
// Version:     0.1-5
// Last Edited: 18 May 1995
//
// ---
//
// Declarations for Coldmud signal-handling routines.
*/

#ifndef SIGNAL_H
#define SIGNAL_H

void init_sig(void);

/* void catch_signal(int sig, int code, struct sigcontext *scp); */
void catch_signal(int sig);

#endif