Home | History | Annotate | Line # | Download | only in sys
Lint_getcontext.c revision 1.2
      1 /*	$NetBSD: Lint_getcontext.c,v 1.2 2003/01/18 11:32:58 thorpej Exp $	*/
      2 
      3 /*
      4  * This file placed in the public domain.
      5  * Klaus Klein, January 26, 1999.
      6  */
      7 
      8 #include <ucontext.h>
      9 
     10 /*ARGSUSED*/
     11 int
     12 getcontext(ucp)
     13 	ucontext_t *ucp;
     14 {
     15 
     16 	return (0);
     17 }
     18