Initial import from FreeBSD RELENG_4:
[dragonfly.git] / contrib / opie / libmissing / sigemptyset.c
1 /* sigemptyset.c: A replacement for the sigemptyset function
2
3 %%% copyright-cmetz
4 This software is Copyright 1996 by Craig Metz, All Rights Reserved.
5 The Inner Net License Version 2 applies to this software.
6 You should have received a copy of the license with this software. If
7 you didn't get a copy, you may request one from <license@inner.net>.
8
9         History:
10
11         Created by cmetz for OPIE 2.2.
12 */
13
14 #include "opie_cfg.h"
15 #include "opie.h"
16
17 int sigemptyset FUNCTION((set), sigset_t *set)
18 {
19         if (set)
20           memset(set, 0, sizeof(sigset_t))
21
22         return 0;
23 }