repo.or.cz
/
arla.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
(nnpfs_block_open): better cleanup on failure
[arla.git]
/
lwp
/
testprocess.c
blob
4f6cb9c46033d4ae70abe696b629a9df8da304f0
1
#include <lwp.h>
2
3
/*
4
* This is no test-program for lwp, this is just to make
5
* sure we got a process.o that we can link with.
6
* Run it if you want a coredump...
7
*
8
*
9
* Todo: really a test-program
10
*
11
* $Id$
12
*/
13
14
int
savecontext
();
15
int
returnto
();
16
17
int
main
(
void
)
18
{
19
savecontext
();
20
returnto
();
21
return
0
;
22
}