2010-09-11 00:19:01 +02:00
|
|
|
/*
|
2010-09-14 00:30:45 +02:00
|
|
|
* ngIRCd -- The Next Generation IRC Daemon
|
|
|
|
*
|
2010-09-11 00:19:01 +02:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
* Please read the file COPYING, README and AUTHORS for more information.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef signals_included_
|
|
|
|
#define signals_included_
|
|
|
|
|
2010-12-27 17:14:14 +01:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Signal Handlers (header).
|
|
|
|
*/
|
|
|
|
|
2010-09-11 00:19:01 +02:00
|
|
|
#include "portab.h"
|
|
|
|
|
2010-09-14 00:29:34 +02:00
|
|
|
bool Signals_Init PARAMS((void));
|
|
|
|
void Signals_Exit PARAMS((void));
|
2010-09-11 00:19:01 +02:00
|
|
|
|
|
|
|
#endif
|