summaryrefslogtreecommitdiff
path: root/lib/libc/sys/Lint_sigpending.c
blob: cede2075161028ff845254299dcfe3c00969c2cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*	$OpenBSD: Lint_sigpending.c,v 1.1 1998/02/08 22:45:12 tholo Exp $	*/
/*	$NetBSD: Lint_sigpending.c,v 1.1 1997/11/06 00:53:11 cgd Exp $	*/

/*
 * This file placed in the public domain.
 * Chris Demetriou, November 5, 1997.
 */

#include <signal.h>

/*ARGSUSED*/
int
sigpending(set)
	sigset_t *set;
{
	return (0);
}