summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.rst6
-rw-r--r--Makefile1
-rw-r--r--libgcompat/ctype.c1
3 files changed, 8 insertions, 0 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 2902cb3..f86ecdc 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -17,6 +17,12 @@ Build system
* Allow building against libucontext.
+ctype
+-----
+
+* Add __ctype_b.
+
+
cxx_thread
----------
diff --git a/Makefile b/Makefile
index 74c25f6..272bfd9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,7 @@
LIBGCOMPAT_INCLUDE = \
libgcompat/alias.h
LIBGCOMPAT_SRC = \
+ libgcompat/ctype.c \
libgcompat/cxx_thread.c \
libgcompat/dlfcn.c \
libgcompat/error.c \
diff --git a/libgcompat/ctype.c b/libgcompat/ctype.c
new file mode 100644
index 0000000..1ae9877
--- /dev/null
+++ b/libgcompat/ctype.c
@@ -0,0 +1 @@
+const unsigned short int *__ctype_b;