/* $NetBSD: Lint__setjmp.c,v 1.2 2000/06/14 06:49:05 cgd Exp $ *//* * This file placed in the public domain. * Chris Demetriou, November 5, 1997. */#include <setjmp.h>/*ARGSUSED*/int_setjmp(env)jmp_buf env;{return(0);}/*ARGSUSED*/void_longjmp(env, val)jmp_buf env;int val;{}