arch/m68k-amiga: Define the gcc symbol 'start' instead of using .bss
[AROS.git] / compiler / clib / sigpending.c
blob23f3c463cf0147874eeccfe5408498375d93cb26
1 /*
2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
3 $Id$
5 ANSI C function sigpending().
6 */
8 #include <aros/debug.h>
9 #include <errno.h>
11 /*****************************************************************************
13 NAME */
15 #include <signal.h>
17 int sigpending (
19 /* SYNOPSIS */
20 sigset_t *set)
22 /* FUNCTION
24 INPUTS
26 RESULT
28 NOTES
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
38 ******************************************************************************/
40 /* FIXME: Implement sigpending() */
41 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
42 errno = ENOSYS;
44 return -1;
45 } /* sigpending */