Use dos.library/CreateNewProc() instead of alib/CreateNewProcTags()
[tangerine.git] / compiler / clib / sigsuspend.c
blob733abce494e46638ca6b07674f6e0eb7c2f560bd
1 /*
2 Copyright © 1995-2002, The AROS Development Team. All rights reserved.
3 $Id$
5 ANSI C function sigsuspend().
6 */
8 #include <aros/debug.h>
10 /*****************************************************************************
12 NAME */
14 #include <signal.h>
16 int sigsuspend (
18 /* SYNOPSIS */
19 const sigset_t *mask)
21 /* FUNCTION
23 INPUTS
25 RESULT
27 NOTES
29 EXAMPLE
31 BUGS
33 SEE ALSO
35 INTERNALS
37 ******************************************************************************/
39 # warning Implement sigsuspend()
40 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
42 return -1;
43 } /* sigsuspend */