1 1.3 rillig /* $NetBSD: Lint_swapcontext.c,v 1.3 2024/12/01 16:16:56 rillig 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.3 rillig swapcontext(ucontext_t *oucp, const ucontext_t *ucp) 13 1.2 thorpej { 14 1.3 rillig return 0; 15 1.2 thorpej } 16