xref: /netbsd-src/lib/libc/sys/Lint_getcontext.c (revision f1542991df4ea18be5a5bd3e9c5e7ca553b4e14f)
1 /*	$NetBSD: Lint_getcontext.c,v 1.3 2024/12/01 16:16:57 rillig 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(ucontext_t *ucp)
13 {
14 	return 0;
15 }
16