blob: efb56bf98767abe783e2a009558a7c73b50ce010 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* $OpenBSD: Lint_siglongjmp.c,v 1.1 2007/09/09 19:22:45 otto Exp $ */
/* Public domain, Otto Moerbeek, 2007 */
#include <setjmp.h>
/*ARGSUSED*/
void
siglongjmp(sigjmp_buf env, int val)
{
}
|