muimaster.library: support Listview_List in List
[AROS.git] / compiler / posixc / sigaction.c
blob9c04f77ca51e6c91ebd1850d6006030603d2a133
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX.1-2008 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
30 Not implemented.
32 EXAMPLE
34 BUGS
36 SEE ALSO
38 INTERNALS
40 ******************************************************************************/
42 /* TODO: Implement sigaction() */
43 AROS_FUNCTION_NOT_IMPLEMENTED("posixc");
44 errno = ENOSYS;
46 return -1;
47 } /* sigaction */