- Made pciuhci.device and pciehci.device compile again: completed
[AROS.git] / compiler / clib / kill.c
blob3c27f20ef93144a632378952d0c7ce5a1623ba9b
1 /*
2 Copyright © 2003, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX function kill().
6 */
8 #include <aros/debug.h>
9 #include <errno.h>
11 /*****************************************************************************
13 NAME */
14 #include <signal.h>
16 int kill (
18 /* SYNOPSIS */
19 pid_t pid,
20 int sig)
22 /* FUNCTION
24 INPUTS
26 RESULT
28 NOTES
29 Not implemented.
31 EXAMPLE
33 BUGS
35 SEE ALSO
37 INTERNALS
39 ******************************************************************************/
41 /* TODO: Implement kill() */
42 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
43 errno = ENOSYS;
45 return -1;
46 } /* kill() */