Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/lib/libc/gen/Lint___setjmp14.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- src/lib/libc/gen/Lint___setjmp14.c 2000/06/14 06:49:05 1.2 +++ src/lib/libc/gen/Lint___setjmp14.c 2005/04/09 12:48:58 1.3 @@ -1,4 +1,4 @@ -/* $NetBSD: Lint___setjmp14.c,v 1.2 2000/06/14 06:49:05 cgd Exp $ */ +/* $NetBSD: Lint___setjmp14.c,v 1.3 2005/04/09 12:48:58 dsl Exp $ */ /* * This file placed in the public domain. @@ -9,16 +9,13 @@ /*ARGSUSED*/ int -__setjmp14(env) - jmp_buf env; +__setjmp14(jmp_buf env) { - return (0); + return 0; } /*ARGSUSED*/ void -__longjmp14(env, val) - jmp_buf env; - int val; +__longjmp14(jmp_buf env, int val) { }