use same location as .configured, etc, to store .files-touched
[AROS.git] / compiler / clib / signal.c
blob4bf4ef95f8b1a2162073fe753ac70f92709772f5
1 /*
2 Copyright © 2004-2010, 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 /* FIXME: Implement signal() */
44 errno = ENOSYS;
45 return (__sighandler_t *) -1;