sigsetops.c (075ff1d959b49668edb61e509433127fb5a24ee0) | sigsetops.c (ea8d448a923f0d68d7ecf1d2a0583c7d17bdee4e) |
---|---|
1/*- 2 * Copyright (c) 1989, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 20 unchanged lines hidden (view full) --- 29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31 * SUCH DAMAGE. 32 * 33 * @(#)sigsetops.c 8.1 (Berkeley) 6/4/93 34 */ 35 36#if defined(LIBC_SCCS) && !defined(lint) | 1/*- 2 * Copyright (c) 1989, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 20 unchanged lines hidden (view full) --- 29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31 * SUCH DAMAGE. 32 * 33 * @(#)sigsetops.c 8.1 (Berkeley) 6/4/93 34 */ 35 36#if defined(LIBC_SCCS) && !defined(lint) |
37#if 0 | |
38static char sccsid[] = "@(#)sigsetops.c 8.1 (Berkeley) 6/4/93"; | 37static char sccsid[] = "@(#)sigsetops.c 8.1 (Berkeley) 6/4/93"; |
39#endif 40static const char rcsid[] = 41 "$FreeBSD$"; | |
42#endif /* LIBC_SCCS and not lint */ | 38#endif /* LIBC_SCCS and not lint */ |
39#include <sys/cdefs.h> 40__FBSDID("$FreeBSD$"); |
|
43 44#include <errno.h> 45#include <signal.h> 46 47int 48sigaddset(set, signo) 49 sigset_t *set; 50 int signo; --- 58 unchanged lines hidden --- | 41 42#include <errno.h> 43#include <signal.h> 44 45int 46sigaddset(set, signo) 47 sigset_t *set; 48 int signo; --- 58 unchanged lines hidden --- |