Home | History | Annotate | Line # | Download | only in sys
Lint_getcontext.c revision 1.1.2.1
      1  1.1.2.1  nathanw /*	$NetBSD: Lint_getcontext.c,v 1.1.2.1 2001/03/05 23:34:39 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, January 26, 1999.
      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 getcontext(ucp)
     13  1.1.2.1  nathanw 	ucontext_t *ucp;
     14  1.1.2.1  nathanw {
     15  1.1.2.1  nathanw 
     16  1.1.2.1  nathanw 	return (0);
     17  1.1.2.1  nathanw }
     18