ack/lang/cem/libcc.ansi/signal/raise.c

18 lines
348 B
C
Raw Normal View History

1989-05-11 12:32:26 +00:00
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
1994-06-24 14:02:31 +00:00
/* $Id$ */
1989-05-11 12:32:26 +00:00
2018-06-21 20:33:47 +00:00
#if defined(_POSIX_SOURCE)
2018-06-17 13:42:26 +00:00
#include <sys/types.h>
#endif
2018-06-17 13:42:26 +00:00
#include <signal.h>
1989-05-11 12:32:26 +00:00
2018-06-21 20:33:47 +00:00
int raise(int sig)
1989-05-11 12:32:26 +00:00
{
if (sig < 0 || sig > _NSIG)
return -1;
return kill(getpid(), sig);
1989-05-11 12:32:26 +00:00
}