1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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 <ucontext.h> /*ARGSUSED*/ int swapcontext(oucp, ucp) ucontext_t *oucp; const ucontext_t *ucp; { return (0); }