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