summaryrefslogtreecommitdiff
path: root/libgcompat/ucontext.c
blob: 1e7618c769f3f5d44a11697538b3f7251c4fb3eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <errno.h> /* errno, ENOSYS */

#ifndef HAVE_LIBUCONTEXT

int getcontext(void *ucp)
{
	errno = ENOSYS;
	return -1;
}

#endif