blob: 8f6f819f4f142de17aee8a7f56decd8c70eedd5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* $OpenBSD: Lint_sigsuspend.c,v 1.1 1998/02/08 22:45:14 tholo Exp $ */
/* $NetBSD: Lint_sigsuspend.c,v 1.1 1997/11/06 00:53:20 cgd Exp $ */
/*
* This file placed in the public domain.
* Chris Demetriou, November 5, 1997.
*/
#include <signal.h>
/*ARGSUSED*/
int
sigsuspend(sigmask)
const sigset_t *sigmask;
{
return (0);
}
|