blob: aed9b46d7fd4eea7c96425a17a04e89b635f6c52 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/* Copyright (C) 1995,1996 Robert de Bath <rdebath@cix.compulink.co.uk>
2 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
3 */
4
5#include <unistd.h>
6#include <string.h>
7#include <signal.h>
8#include <sys/types.h>
9
10int raise(int signo)
11{
12 return kill(getpid(), signo);
13}
14libc_hidden_def(raise)