arch/m68k-amiga: Define the gcc symbol 'start' instead of using .bss
[AROS.git] / compiler / clib / sigsuspend.c
blob3faf2e3bcdb9a7100e0d1c59e109efa1670b0e03
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>
9 #include <errno.h>
11 /*****************************************************************************
13 NAME */
15 #include <signal.h>
17 int sigsuspend (
19 /* SYNOPSIS */
20 const sigset_t *mask)
22 /* FUNCTION
24 INPUTS
26 RESULT
28 NOTES
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
38 ******************************************************************************/
40 /* FIXME: Implement sigsuspend() */
41 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
42 errno = ENOSYS;
44 return -1;
45 } /* sigsuspend */