1 1.2 thorpej /* $NetBSD: Lint_swapcontext.c,v 1.2 2003/01/18 11:38:47 thorpej Exp $ */ 2 1.2 thorpej 3 1.2 thorpej /* 4 1.2 thorpej * This file placed in the public domain. 5 1.2 thorpej * Klaus Klein, November 29, 1998. 6 1.2 thorpej */ 7 1.2 thorpej 8 1.2 thorpej #include <ucontext.h> 9 1.2 thorpej 10 1.2 thorpej /*ARGSUSED*/ 11 1.2 thorpej int 12 1.2 thorpej swapcontext(oucp, ucp) 13 1.2 thorpej ucontext_t *oucp; 14 1.2 thorpej const ucontext_t *ucp; 15 1.2 thorpej { 16 1.2 thorpej 17 1.2 thorpej return (0); 18 1.2 thorpej } 19