Create Py_UNICODE_strcat() function
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
index 5fadb99..afef5d0 100644
--- a/Include/unicodeobject.h
+++ b/Include/unicodeobject.h
@@ -1573,6 +1573,9 @@
     Py_UNICODE *s1,
     const Py_UNICODE *s2);
 
+PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strcat(
+    Py_UNICODE *s1, const Py_UNICODE *s2);
+
 PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strncpy(
     Py_UNICODE *s1,
     const Py_UNICODE *s2,