compiler/clib: Rename IoErr2errno() to __arosc_ioerr2errno(); function is now defined...
[AROS.git] / compiler / clib / kill.c
blob7405b18aa4832d42bf10eaa2c1e84321ecc68a9e
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 /* warning Implement kill() */
42 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
43 errno = ENOSYS;
45 return -1;
46 } /* kill() */