summaryrefslogblamecommitdiff
path: root/libgcompat/ucontext.c
blob: 1e7618c769f3f5d44a11697538b3f7251c4fb3eb (plain) (tree)
1
2
3
4
5
6
7
8
9
                                      
 

                        




                         

      
#include <errno.h> /* errno, ENOSYS */

#ifndef HAVE_LIBUCONTEXT

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

#endif