diff options
| author | dsl <dsl@NetBSD.org> | 2005-04-09 12:48:58 +0000 |
|---|---|---|
| committer | dsl <dsl@NetBSD.org> | 2005-04-09 12:48:58 +0000 |
| commit | 6d9a96dfb22edf79fd48039e6c96fe9eb445bd97 (patch) | |
| tree | 66358ddbeaa693501d5d912cc4acbe28ad3aef1d /lib/libc | |
| parent | 66013b128ba1764bc662f12e4b1a453fc574639c (diff) | |
KNF
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/gen/Lint___setjmp14.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/lib/libc/gen/Lint___setjmp14.c b/lib/libc/gen/Lint___setjmp14.c index e07fb7e3fd1..1d4f47fa5f9 100644 --- a/lib/libc/gen/Lint___setjmp14.c +++ b/lib/libc/gen/Lint___setjmp14.c @@ -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) { } |
