summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rw-r--r--libgcompat/ucontext.c7
2 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 784babc..b014afc 100644
--- a/Makefile
+++ b/Makefile
@@ -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;
+}