sighandlers.h 591 B

1234567891011121314151617181920212223242526
  1. /*
  2. * ngIRCd -- The Next Generation IRC Daemon
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. * Please read the file COPYING, README and AUTHORS for more information.
  9. */
  10. #ifndef signals_included_
  11. #define signals_included_
  12. /**
  13. * @file
  14. * Signal Handlers (header).
  15. */
  16. #include "portab.h"
  17. bool Signals_Init PARAMS((void));
  18. void Signals_Exit PARAMS((void));
  19. #endif
  20. /* -eof- */