arch/m68k-amiga: Define the gcc symbol 'start' instead of using .bss
[AROS.git] / compiler / clib / sigaction.c
blob1c56b3d69bbf9c43b1b433e8349d4dc5ad8e987c
1 /*
2 Copyright © 1995-2010, The AROS Development Team. All rights reserved.
3 $Id$
5 ANSI C function sigaction().
6 */
8 #include <aros/debug.h>
9 #include <errno.h>
11 /*****************************************************************************
13 NAME */
14 #include <signal.h>
16 int sigaction (
18 /* SYNOPSIS */
19 int signum,
20 const struct sigaction *act,
21 struct sigaction *oldact)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
31 EXAMPLE
33 BUGS
35 SEE ALSO
37 INTERNALS
39 ******************************************************************************/
41 /* FIXME: Implement sigaction() */
42 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
43 errno = ENOSYS;
45 return -1;
46 } /* sigaction */