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_swapcontext.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- src/lib/libc/gen/Lint_swapcontext.c 2001/03/05 23:34:38 1.1 +++ src/lib/libc/gen/Lint_swapcontext.c 2003/01/18 11:38:47 1.2 @@ -0,0 +1,18 @@ +/* $NetBSD: Lint_swapcontext.c,v 1.2 2003/01/18 11:38:47 thorpej Exp $ */ + +/* + * This file placed in the public domain. + * Klaus Klein, November 29, 1998. + */ + +#include + +/*ARGSUSED*/ +int +swapcontext(oucp, ucp) + ucontext_t *oucp; + const ucontext_t *ucp; +{ + + return (0); +}