repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
import tput from NetBSD
[minix3.git]
/
lib
/
libc
/
gen
/
Lint_swapcontext.c
blob
0e0b45e80cda1a15122b078045f64a7689801cb5
1
/* $NetBSD: Lint_swapcontext.c,v 1.2 2003/01/18 11:38:47 thorpej Exp $ */
2
3
/*
4
* This file placed in the public domain.
5
* Klaus Klein, November 29, 1998.
6
*/
7
8
#include <ucontext.h>
9
10
/*ARGSUSED*/
11
int
12
swapcontext
(
oucp
,
ucp
)
13
ucontext_t
*
oucp
;
14
const
ucontext_t
*
ucp
;
15
{
16
17
return
(
0
);
18
}