libc/machine/cris/sys/signal.h (kill): Declare.

This commit is contained in:
Hans-Peter Nilsson 2015-09-03 01:59:43 +02:00
parent 5a3d536ce1
commit 82d7069a5e
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2015-09-03 Hans-Peter Nilsson <hp@axis.com>
* libc/machine/cris/sys/signal.h (kill): Declare.
2015-08-29 Corinna Vinschen <corinna@vinschen.de>
* include/sys/unistd.h (_SC_LEVEL*): Add cache-related variables as

View File

@ -44,6 +44,10 @@ struct sigaction {
int sigprocmask (int __how, const sigset_t *__a, sigset_t *__b);
/* The first argument is really a pid_t, but that's just a typedef'd
int, so let's avoid requiring sys/types only for this declaration. */
int kill (int, int);
#define SIGHUP 1
#define SIGINT 2
#define SIGQUIT 3