Autodoc corrections
[cake.git] / compiler / clib / signal.c
blobc89c8c11f876f5ea5371ce23852f518d09de0864
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/debug.h>
8 #include <stdio.h>
9 #include <errno.h>
11 /*****************************************************************************
13 NAME */
15 #include <signal.h>
17 __sighandler_t *signal(
19 /* SYNOPSIS */
20 int sig,
21 __sighandler_t *handler)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
30 Not implemented.
32 EXAMPLE
34 BUGS
36 SEE ALSO
38 INTERNALS
40 ******************************************************************************/
42 # warning Implement signal()
43 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
45 errno = ENOSYS;
46 return (__sighandler_t *) -1;