another one

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2000 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Daniel Reinhold
2002-11-18 02:33:38 +00:00
parent 7f04740599
commit ae130fe5c1
@@ -0,0 +1,24 @@
#include <syscalls.h>
#include <signal.h>
/*
* Copyright (c) 2002, OpenBeOS Project. All rights reserved.
* Distributed under the terms of the OpenBeOS license.
*
* send_signal.c:
* implements the signal function send_signal()
* this is merely a wrapper for a syscall
*
*
* Author(s):
* Daniel Reinhold ([email protected])
*
*/
int
send_signal(pid_t tid, uint sig)
{
return sys_send_signal(tid, sig);
}