summaryrefslogtreecommitdiff
path: root/src/ucontext/setcontext.c
blob: c4808307e1b7e90be89f6f3ddf6dfbfaa10436b8 (plain)
1
2
3
4
5
6
7
8
9
10
#include <ucontext.h>

int setcontext(const ucontext_t *ucp)
{
	return 0;
}

/*
XOPEN(400,700)
*/