b6cbf7203b
This patch imports the unmodified current version of NetBSD libc. The NetBSD includes are in /nbsd_include, while the libc code itself is split between lib/nbsd_libc and common/lib/libc.
18 lines
284 B
C
18 lines
284 B
C
/* $NetBSD: Lint_swapcontext.c,v 1.2 2003/01/18 11:38:47 thorpej Exp $ */
|
|
|
|
/*
|
|
* This file placed in the public domain.
|
|
* Klaus Klein, November 29, 1998.
|
|
*/
|
|
|
|
#include <ucontext.h>
|
|
|
|
/*ARGSUSED*/
|
|
int
|
|
swapcontext(oucp, ucp)
|
|
ucontext_t *oucp;
|
|
const ucontext_t *ucp;
|
|
{
|
|
|
|
return (0);
|
|
}
|