minix/lib/nbsd_libc/gen/Lint_swapcontext.c
Gianluca Guida b6cbf7203b Import unmodified NetBSD libc in trunk
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.
2011-02-14 19:36:03 +00:00

19 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);
}