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