summaryrefslogtreecommitdiffstats
path: root/usr.sbin/afs/src/lwp/testprocess.c
blob: 8b39a37cf2359e03921dee3fa325ac1acfe31bf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <lwp.h>

/*
 * This is no test-program for lwp, this is just to make
 * sure we got a process.o that we can link with.
 * Run it if you want a coredump...
 *
 *
 *  Todo: really a test-program
 *
 * $arla: testprocess.c,v 1.1 1998/06/09 11:52:53 lha Exp $
 */

int savecontext();
int returnto();

int main(void)
{
    savecontext();
    returnto();
    return 0;
}