1/* $NetBSD: Lint___setjmp14.c,v 1.2 2000/06/14 06:49:05 cgd Exp $ */
2
3/*
4 * This file placed in the public domain.
5 * Chris Demetriou, November 5, 1997.
6 */
7
8#include <setjmp.h>
9
10/*ARGSUSED*/
11int
12__setjmp14(jmp_buf env)
13{
14	return 0;
15}
16
17/*ARGSUSED*/
18void
19__longjmp14(jmp_buf env, int val)
20{
21}
22