1 1.2 thorpej /* $NetBSD: Lint_getcontext.c,v 1.2 2003/01/18 11:32:58 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, January 26, 1999. 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 getcontext(ucp) 13 1.2 thorpej ucontext_t *ucp; 14 1.2 thorpej { 15 1.2 thorpej 16 1.2 thorpej return (0); 17 1.2 thorpej } 18