blob: f50a2e5c2e4f8140ba602fb8aa6eacac3db5ff7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* $OpenBSD: Lint_sigreturn.c,v 1.2 2004/09/14 22:18:56 deraadt Exp $ */
/* $NetBSD: Lint_sigreturn.c,v 1.1 1997/11/06 00:53:18 cgd Exp $ */
/*
* This file placed in the public domain.
* Chris Demetriou, November 5, 1997.
*/
#include <signal.h>
/*ARGSUSED*/
int
sigreturn(struct sigcontext *scp)
{
return (0);
}
|