Files
rtems/testsuites/libtests/POSIX/sigdelset.c
Ralf Corsepius 4583cac88e New.
2009-12-04 15:17:31 +00:00

20 lines
340 B
C

/*
* Copyright (c) 2009 by
* Ralf Corsépius, Ulm, Germany. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software
* is freely granted, provided that this notice is preserved.
*/
#include <signal.h>
int
main (void)
{
sigset_t set;
int status;
status = sigdelset (&set, 21);
return status;
}