Init the object variable for the registergroup so that
[cake.git] / compiler / clib / sigaction.c
blob4eb9836c50e125aba895768e01d29630b5623d66
1 /*
2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
3 $Id$
5 ANSI C function sigaction().
6 */
8 #include <aros/debug.h>
10 /*****************************************************************************
12 NAME */
13 #include <signal.h>
15 int sigaction (
17 /* SYNOPSIS */
18 int signum,
19 const struct sigaction *act,
20 struct sigaction *oldact)
22 /* FUNCTION
24 INPUTS
26 RESULT
28 NOTES
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
38 ******************************************************************************/
40 # warning Implement sigaction()
41 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
43 return -1;
44 } /* sigaction */