146464Sbostic /*- 2*61111Sbostic * Copyright (c) 1990, 1993 3*61111Sbostic * The Regents of the University of California. All rights reserved. 446464Sbostic * 546464Sbostic * %sccs.include.redist.c% 646464Sbostic */ 746464Sbostic 846464Sbostic #if defined(LIBC_SCCS) && !defined(lint) 9*61111Sbostic static char sccsid[] = "@(#)raise.c 8.1 (Berkeley) 06/04/93"; 1046464Sbostic #endif /* LIBC_SCCS and not lint */ 1146464Sbostic 1246464Sbostic #include <signal.h> 1346464Sbostic #include <unistd.h> 1446464Sbostic raise(s)1546464Sbosticraise(s) 1646464Sbostic int s; 1746464Sbostic { 1846464Sbostic return(kill(getpid(), s)); 1946464Sbostic } 20