source: rtems/testsuites/libtests/POSIX/sigdelset.c @ 4583cac

4.104.115
Last change on this file since 4583cac was 4583cac, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/04/09 at 15:17:31

New.

  • Property mode set to 100644
File size: 340 bytes
Line 
1/*
2 * Copyright (c) 2009 by
3 * Ralf Corsépius, Ulm, Germany. All rights reserved.
4 *
5 * Permission to use, copy, modify, and distribute this software
6 * is freely granted, provided that this notice is preserved.
7 */
8
9#include <signal.h>
10
11int
12main (void)
13{
14  sigset_t set;
15  int status;
16  status = sigdelset (&set, 21);
17
18  return status;
19}
Note: See TracBrowser for help on using the repository browser.