diff options
-rw-r--r-- | CHANGELOG.rst | 6 | ||||
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | libgcompat/ctype.c | 1 |
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 ---------- @@ -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; |