Makefile adopted to changed font names.
[cake.git] / compiler / clib / sigprocmask.c
blob8de7ecaa629f0653b2f57f718eed1bf258fefde3
1 /*
2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
3 $Id$
5 ANSI C function sigprocmask().
6 */
8 #include <aros/debug.h>
10 /*****************************************************************************
12 NAME */
14 #include <signal.h>
16 int sigprocmask (
18 /* SYNOPSIS */
19 int how,
20 const sigset_t *set,
21 sigset_t *oldset)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
31 EXAMPLE
33 BUGS
35 SEE ALSO
37 INTERNALS
39 ******************************************************************************/
41 # warning Implement sigprocmask()
42 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
44 return -1;
45 } /* sigprocmask */