diff options
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | libgcompat/ucontext.c | 7 |
2 files changed, 8 insertions, 0 deletions
@@ -14,6 +14,7 @@ LIBGCOMPAT_SRC = \ libgcompat/stdlib.c \ libgcompat/string.c \ libgcompat/sysctl.c \ + libgcompat/ucontext.c \ libgcompat/version.c LIBGCOMPAT_OBJ = ${LIBGCOMPAT_SRC:.c=.o} LIBGCOMPAT_SOVERSION = 0 diff --git a/libgcompat/ucontext.c b/libgcompat/ucontext.c new file mode 100644 index 0000000..2d6006e --- /dev/null +++ b/libgcompat/ucontext.c @@ -0,0 +1,7 @@ +#include <errno.h> /* errno, ENOSYS */ + +int getcontext(void *ucp) +{ + errno = ENOSYS; + return -1; +} |