muimaster.library: support Listview_List in List
[AROS.git] / compiler / posixc / sigprocmask.c
blob04d463710825d09f06ff5441c39f1f85beec5ea9
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX.1-2008 function sigprocmask().
6 */
8 #include <aros/debug.h>
9 #include <errno.h>
11 /*****************************************************************************
13 NAME */
15 #include <signal.h>
17 int sigprocmask (
19 /* SYNOPSIS */
20 int how,
21 const sigset_t *set,
22 sigset_t *oldset)
24 /* FUNCTION
26 INPUTS
28 RESULT
30 NOTES
31 Not implemented.
33 EXAMPLE
35 BUGS
37 SEE ALSO
39 INTERNALS
41 ******************************************************************************/
43 /* TODO: Implement sigprocmask() */
44 AROS_FUNCTION_NOT_IMPLEMENTED("posixc");
45 errno = ENOSYS;
47 return -1;
48 } /* sigprocmask */