Rudiments
signalclassesincludes.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information.
3
4#include <rudiments/object.h>
5
6#include <signal.h>
7#ifdef RUDIMENTS_HAVE_SYS_SIGNAL_H
8 #include <sys/signal.h>
9#endif
10#include <sys/types.h>
11
12// make sure SIGKILL and SIGALRM are defined
13#ifndef SIGKILL
14 #define SIGKILL 9
15#endif
16#ifndef SIGALRM
17 #define SIGALRM 14
18#endif
19
Definition avltree.h:11